Remove download delay on APKLeecher

Removes download delay on APKLeecher

  1. // ==UserScript==
  2. // @name Remove download delay on APKLeecher
  3. // @namespace StephenP
  4. // @version 1.0.0
  5. // @description Removes download delay on APKLeecher
  6. // @author StephenP
  7. // @match https://apkleecher.com/download/dl.php?*
  8. // @match http://apkleecher.com/download/dl.php?*
  9. // @grant none
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. try{
  14. var timeoutDownloader=document.getElementsByClassName("form-group")[0].getElementsByTagName("script");
  15. timeoutDownloader=timeoutDownloader[timeoutDownloader.length-1];
  16. var apklink = "https://apkleecher.com"+timeoutDownloader.innerHTML.substring(timeoutDownloader.innerHTML.lastIndexOf("..") + 2,timeoutDownloader.innerHTML.lastIndexOf('.apk')+4);
  17. //tries to remove the download timeout with many values because the timeout script doesn't save its id.
  18. for(var i=0;i<20;i++){
  19. clearTimeout(i);};
  20. location.href=apklink;
  21. }
  22. catch(err){
  23. console.log("Something in ApkLeecher page has changed since this script was last edited. To prevent errors, the page has not benn touched. The download will start with the usual delay");
  24. }
  25. })();

QingJ © 2025

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