您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypasses 60 second countdowns on FREEdlink downloads
// ==UserScript== // @name Bypass FREEdlink countdown // @description Bypasses 60 second countdowns on FREEdlink downloads // @namespace Violentmonkey Scripts // @match https://frdl.to/* // @match https://frdl.io/* // @match https://frdl.is/* // @match https://frdl.my/* // @match https://frdl.hk/* // @match https://frdl.fi/* // @match https://frdl.pw/* // @match https://frdl.*/* // @version 1.3.1 // @license MIT // @author Luka Mamukashvili <[email protected]> // @require https://code.jquery.com/jquery-3.7.1.slim.min.js // ==/UserScript== // FOR SOME REASON VANILLA JAVASCRIPT DOES NOT WORK EVEN IF I WRITE EQUIVALENT CODE // WHY?! (function() { 'use strict'; // Ensure jQuery is loaded and available /* global $ */ if (typeof $ === 'undefined') { console.error('Freedl.ink Download Helper: jQuery is not loaded. Exiting.'); return; } $(document).ready(function() { const freeDownloadButton = $('#downloadbtnfree'); const countdownDisplay = $('#countdown'); const freeCaptchaSection = $('#free-captcha'); const downloadFreeInput = $('#download_free'); if (freeDownloadButton.length && countdownDisplay.length && freeCaptchaSection.length && downloadFreeInput.length) { console.log('[FREEDL BYPASS] Normal download elements found.'); downloadFreeInput.val('1'); countdownDisplay.hide(); freeCaptchaSection.show(); console.log('[FREEDL BYPASS] Captcha section shown.'); freeDownloadButton.attr('disabled', false); freeDownloadButton.html("Start Download NOW (after captcha)"); console.log('[FREEDL BYPASS] Normal Download button enabled.'); if ($('#userscript_message').length === 0) { freeCaptchaSection.after('<p id="userscript_message" style="color: green; text-align: center;">Userscript active: Please complete the captcha above and then click "Start Download NOW".</p>'); } } else { console.log('[FREEDL BYPASS] Target elements for normal download not found on this page.'); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址