Greasy Fork is available in English.

megaup自動下載

自動下載megaup檔案

  1. // ==UserScript==
  2. // @name megaup自動下載
  3. // @version 1.0.0
  4. // @description 自動下載megaup檔案
  5. // @author 聖冰如焰
  6. // @match https://megaup.net/*
  7. // @icon https://www.google.com/s2/favicons?domain=megaup.net
  8. // @grant none
  9. // @namespace https://greasyfork.org/users/442438
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. let clicked = true
  15. setInterval(()=>{
  16. if ($("#btnsubmit").length && clicked){
  17. $("#btnsubmit").click();
  18. clicked = false;
  19. }
  20. },200)
  21. })();