百度網盤自定義密碼

可以在發布時修改產生的密碼,僅限4位數

  1. // ==UserScript==
  2. // @name 百度網盤自定義密碼
  3. // @namespace Ahuangzai
  4. // @description 可以在發布時修改產生的密碼,僅限4位數
  5. // @include http://pan.baidu.com/*
  6. // @include https://pan.baidu.com/*
  7. // @version 1.0
  8. // @grant none
  9. // ==/UserScript==
  10. var myHandle;
  11.  
  12. function myFunction() {
  13. var script = require(["function-widget-1:share/util/service/createLinkShare.js"]);
  14. script.prototype.makePrivatePassword = function() { return prompt("請輸入自定義密碼", ""); };
  15. if (script != undefined)
  16. clearInterval(myHandle);
  17. }
  18.  
  19. myHandle = setInterval(myFunction, 1000);