您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skip count down and redirect to actual download page.
// ==UserScript== // @name IGG Games / bluemediafiles bypass // @namespace http://tampermonkey.net/ // @version 0.0.12 // @description Skip count down and redirect to actual download page. // @homepage https://greasyforks.org/scripts/423435 // @supportURL https://greasyforks.org/scripts/423435/feedback // @match *://*/url-generator*.php?url=* // @grant none // @author tths // ==/UserScript== (function() { 'use strict'; function _bluemediafiles_decodeKey(encoded) { var key = ''; for (var i = encoded.length / 2 - 5; i >= 0; i = i - 2) { key += encoded[i]; } for (i = encoded.length / 2 + 4; i < encoded.length; i = i + 2) { key += encoded[i]; } return key; } [].forEach.call(document.getElementsByTagName('script'), function (s) { var m = s.innerText.match(/generateDownloadUrl\(\).+?_0x44b739='(?<encoded>.+?)'/); if (m && m.length > 1) { window.location = '/get-url.php?url=' + _bluemediafiles_decodeKey(m[1]); } }); })();