中国银行购汇跳过30秒等待

[tampermonkey] SB中国银行网银购汇不用等30秒看sb购汇申请书。一键安装:https://openuserjs.org/users/recolic/scripts

fuckboc.user.js

// ==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');*/

})();