您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script bypasses the waiting delai of Picshitz.com.
// ==UserScript== // @name Picshitz.com Bypasser // @namespace http://tampermonkey.net/ // @version 0.1 // @description This script bypasses the waiting delai of Picshitz.com. // @author MoBZ // @license MIT // @match *.picshitz.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // ==/UserScript== (function() { 'use strict'; let button = document.querySelector("#btn-gotolink"); if (typeof button != 'undefined') { let param = document.location.href.substr(document.location.href.indexOf("=") + 1); let realurl = aesCrypto.decrypt(convertstr(param), convertstr('root')); window.scrollTo(0, document.body.scrollHeight); window.location.replace(realurl); } else { console.log("Undefined"); } })();