Skip to content

Instantly share code, notes, and snippets.

@recolic
Last active March 7, 2019 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save recolic/38c6156b5e146807b19d3f4bc6b6fe8e to your computer and use it in GitHub Desktop.
Save recolic/38c6156b5e146807b19d3f4bc6b6fe8e to your computer and use it in GitHub Desktop.
[tampermonkey] SB中国银行网银购汇不用等30秒看sb购汇申请书。一键安装:https://openuserjs.org/users/recolic/scripts
// ==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 <root@recolic.net>
// @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