HK CR

Pause auto logout

// ==UserScript==
// @name         HK CR
// @version      1.0.0
// @description  Pause auto logout
// @author       lennon
// @license      MIT
// @match        https://www.e-services.cr.gov.hk/*
// @require      https://code.jquery.com/jquery-3.7.1.min.js
// @require      https://unpkg.com/swiper@8/swiper-bundle.min.js
// @grant        unsafeWindow
// @run-at       document-end
// @namespace https://gf.qytechs.cn/users/149188
// ==/UserScript==
'use strict';

function main() {
    setInterval(function () {
        if ($("button.btn:contains('延续')").length > 0) {
            $("button.btn:contains('延续')").click()
        }
    }, 1 * 20000);
}

setTimeout(function () {
    main()
}, 5000)

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址