Disable Digital Digest Software Download Manager

Disable Digital Digest Software Download Manager so that clicking the software download link downloads the actual software file instead of Digital Digest's Download Manager.

  1. // ==UserScript==
  2. // @name Disable Digital Digest Software Download Manager
  3. // @namespace DisableDigitalDigestSoftwareDownloadManager
  4. // @description Disable Digital Digest Software Download Manager so that clicking the software download link downloads the actual software file instead of Digital Digest's Download Manager.
  5. // @author jcunews
  6. // @include *://downloads.dddwnld.com/software/download.php*
  7. // @version 1.0.0
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. var hereLink = document.querySelector(".disclaimer a");
  13. var dlLink = document.querySelector(".download_link");
  14. if (!(hereLink && dlLink)) return;
  15. dlLink.href = hereLink.href;
  16. hereLink.parentNode.innerHTML='<style>\
  17. .disclaimer,.disclaimer~br{display:none}\
  18. .download_link{display:inline-block;border-radius:15px;background-color:#0b0;padding:0 15px 15px;color:#fff;text-decoration:none}\
  19. .download_link div{color:#000;font-size:8pt}\
  20. </style>';
  21. dlLink.innerHTML='<h2>Download</h2><div>Download Manager Disabled</div>';
  22. })();

QingJ © 2025

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