您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
不用等待下載時的五秒
// ==UserScript== // @name igg-games 自動轉到檔案下載頁面 // @namespace http://tampermonkey.net/ // @version 2.2 // @description 不用等待下載時的五秒 // @author BeenYan // @match http*://bluemediafiles.com/* // @match http*://bluemediafiles.eu/* // @match http*://bluemediafiles.homes/* // @match http*://bluemediafiles.net/* // @match http*://bluemediafiles.xyz/* // @match http*://bluemediafile.sbs/* // @match http*://dl.pcgamestorrents.org/* // @grant none // @license GPL // ==/UserScript== (function() { 'use strict'; let url = null; const find_source = () =>{ for (const script of document.getElementsByTagName('script')) { const matches = /Goroi_n_Create_Button\("(.*)"\)/.exec(script.innerHTML); if (matches && matches.length === 2) { return matches[1]; } } } const time = setInterval(()=>{ if (url === null) url = find_source(); if (url){ Goroi_n_Create_Button(url); const form = document.querySelector('[action="get-url.php"]') const redirect = form.querySelector('#url').getAttribute('value'); if (redirect !== null) { form.submit(); clearInterval(time); } } },10); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址