Greasy Fork 支持简体中文。

山东驾考自动记住

自动点击山东驾考登录节面的"记住登录信息"

// ==UserScript==
// @name         山东驾考自动记住
// @author       Oneton
// @version      2024-02-04
// @description  自动点击山东驾考登录节面的"记住登录信息"
// @match        http*://103.239.155.248:3700/studentCoaInfo
// @match        http*://103.239.155.248:3700/stuLogin
// @match        http*://103.239.155.248:3700/loginOut
// @grant        none
// @namespace https://greasyfork.org/users/1257229
// ==/UserScript==

(function() {
    'use strict';
    var box = document.getElementById("remember");
    if (!box.checked) {
        box.click();
    }
})();