您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass annoying FileDM download managers!
// ==UserScript== // @name FileDM Bypass // @namespace dagidin // @version 1.2 // @description Bypass annoying FileDM download managers! // @author dagidin // @match *https://filedm.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; if (window.location.hostname === "filedm.com") { const downloadButton = document.querySelector('a#dlbutton'); if (downloadButton) { const hrefValue = downloadButton.getAttribute('href'); if (hrefValue) { const popupWindow = window.open(`https://filedm.com/${hrefValue}`, '_blank'); setTimeout(function() { const userInput = prompt("Enter the 5-digit number before the .exe in the file which was just downloaded"); if (userInput !== null) { alert("FileDM Bypassed!") window.location.replace(`http://cdn.directfiledl.com/getfile?id=${userInput}`) } else { alert("You cancelled."); } }, 2000); } else { alert("Refresh the page.") } } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址