UserscloudDirectDownload

自动点击 Usercloud 的下载按钮

目前为 2018-06-12 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name UserscloudDirectDownload
  3. // @description Auto click Usercloud download button.
  4. // @description:zh-CN 自动点击 Usercloud 的下载按钮
  5. // @author ladit
  6. // @version 1.0.0
  7. // @namespace https://greasyfork.org/zh-CN/scripts/
  8. // @homepageURL https://github.com/ladit/Userscripts
  9. // @supportURL https://github.com/ladit/Userscripts
  10. // @grant none
  11. // @run-at document-idle
  12. // @match https://userscloud.com/*/*
  13. // ==/UserScript==
  14.  
  15.  
  16. if (document.querySelector('#btn_download')) {
  17. document.querySelector('#btn_download').click();
  18. } else {
  19. document.querySelector('a.btn.btn-success.btn-icon-stacked').click();
  20. setTimeout(window.close(), 10000);
  21. }