您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass 500 Error
// ==UserScript== // @name BTC Spinner (Bypass 500 Error on withdrawal) // @namespace http://tampermonkey.net/ // @version 2021.7 // @description Bypass 500 Error // @author Frankie // @match https://btcspinner.io/withdraw // @grant none // ==/UserScript== (($) => { const log = (message) => console.log(`(${new Date().toLocaleString()}) [BTC Spinner] ${message}`) const notify = (message = `Please, open the web page inspector and switch to the Console tab. Contact me at [email protected] to get the full script.` ) => new Promise((resolve, reject) => { resolve(message) }) notify() .then(m => { log(m) return m }) .then(m => alert(m)) })(window.jQuery)