您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypasses the 6 second countdown that bluemediafiles has.
当前为
// ==UserScript== // @name IGG Games Bypass // @namespace http://tampermonkey.net/ // @version 0.2 // @author Arjix // @match *://bluemediafile.site/url-generator* // @icon https://www.google.com/s2/favicons?sz=64&domain=bluemediafile.site // @grant none // @run-at document-start // @description Bypasses the 6 second countdown that bluemediafiles has. // ==/UserScript== /* global nut */ new MutationObserver(async (mutations, observer) => { for (const mutation of mutations) { for (const child of (mutation.addedNodes || [])) { if (child.tagName === "SCRIPT") { const src = child.innerHTML; if (/Goroi_n_Create_Button\(['"]/.test(src)) { child.innerHTML = src .replace("var i = 5;", "var i = 0;") .replace(/}, \d+\);/, "}, 1);") .replace(/jQuery.*?;/, ""); } if (/var Time_Start = (.*?);/.test(src)) { child.innerHTML = src.replace(/var Time_Start = (.*?);/, (m, t) => `var Time_Start = ${t}-(10*1000)`); } } } if (mutation.type === "attributes" && mutation.target.tagName === "INPUT" && mutation.target.id === "url" && mutation.attributeName === "value" && mutation.target.value) { nut.click(); } } }).observe(document, { subtree: true, childList: true, attributes: true });