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.

目前為 2017-04-05 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Disable Digital Digest Software Download Manager
// @namespace   DisableDigitalDigestSoftwareDownloadManager
// @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.
// @author      jcunews
// @include     *://downloads.dddwnld.com/software/download.php*
// @version     1.0.0
// @grant       none
// ==/UserScript==

(function() {
  var hereLink = document.querySelector(".disclaimer a");
  var dlLink = document.querySelector(".download_link");
  if (!(hereLink && dlLink)) return;
  dlLink.href = hereLink.href;
  hereLink.parentNode.innerHTML='<style>\
.disclaimer,.disclaimer~br{display:none}\
.download_link{display:inline-block;border-radius:15px;background-color:#0b0;padding:0 15px 15px;color:#fff;text-decoration:none}\
.download_link div{color:#000;font-size:8pt}\
</style>';
  dlLink.innerHTML='<h2>Download</h2><div>Download Manager Disabled</div>';
})();

QingJ © 2025

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