豆瓣隐私

默认将添加的收藏都设置为私有状态,并禁止发布广播!

  1. // ==UserScript==
  2. // @name 豆瓣隐私
  3. // @namespace https://gf.qytechs.cn/users/2646
  4. // @version 0.1
  5. // @description 默认将添加的收藏都设置为私有状态,并禁止发布广播!
  6. // @author CLE
  7. // @match http://*.douban.com/*
  8. // @match https://*.douban.com/*
  9. // @grant none
  10. // @contributionURL http://clso.tk/donate/
  11. // @contributionAmount 6.66
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. $("body").bind("DOMNodeInserted", function(e) {
  18. $(e.target).find("#dlg-opt-share").attr("value","0").prop("checked", false);
  19. $(e.target).find("#inp-private").attr("value","0").prop("checked", true);
  20. });
  21. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址