Greasy Fork is available in English.

BOC中国银行借记卡取消时间限制

去除BOC营业时间限制

// ==UserScript==
// @name         BOC中国银行借记卡取消时间限制
// @namespace    https://nyaruko.love/?boc
// @version      0.1
// @license      GPLv3
// @description  去除BOC营业时间限制
// @author       https://github.com/qcminecraft
// @match        https://cloud.bankofchina.com/*
// @grant        none
// @icon         https://avatars3.githubusercontent.com/u/25388328
// @require      https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';
    $("#keepOut").remove();
    $("h2.swal2-title").text("当前不在服务时间内,不过我们已经帮您绕过了");
})();