Last active
March 7, 2019 05:15
-
-
Save recolic/38c6156b5e146807b19d3f4bc6b6fe8e to your computer and use it in GitHub Desktop.
[tampermonkey] SB中国银行网银购汇不用等30秒看sb购汇申请书。一键安装:https://openuserjs.org/users/recolic/scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name FUCK BankOfChina By USD from CNY 30 seconds wait. | |
// @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 fucked it. | |
// @author Recolic Keghart <[email protected]> | |
// @match https://ebsnew.boc.cn/boc15/welcome.html* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
//document.getElementById('btn_confirm_456444').classList.remove('btn-red-disabled'); | |
document.getElementById('content').addEventListener("mouseenter", function(){ | |
document.getElementById('btn_confirm_456444').classList.remove('btn-red-disabled'); | |
}, false); | |
/*window.addEventListener('load', function() { | |
alert('hi3'); | |
}, false); | |
alert('fuck');*/ | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment