NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 中国银行网银买外汇跳过30秒等待 // @namespace https://recolic.net/ // @version 0.1 // @description If you buy other concurrency on www.boc.cn, you have to wait 30 seconds to read a document. I have it fucked. // @author Recolic Keghart <root@recolic.net> // @match https://ebsnew.boc.cn/boc15/welcome.html* // @grant none // @license GPL-3.0-or-later // ==/UserScript== (function() { 'use strict'; document.getElementById('content').addEventListener("mouseenter", function(){ document.getElementById('btn_confirm_456444').classList.remove('btn-red-disabled'); }, false); function fuck() { document.getElementById('btn_confirm_456444').classList.remove('btn-red-disabled'); } function main () { fuck(); setTimeout(main, 1000); } setTimeout(main, 1000); })();