Greasy Fork is available in English.

2022安全教育平台课程中心答题

安全教育平台 自动答题

// ==UserScript==
// @name         2022安全教育平台课程中心答题
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  安全教育平台 自动答题
// @author       You
// @match        https://*.xueanquan.com/html/jt/*
// @icon         
// @license     GPL License
// @grant        none
// ==/UserScript==

(function() {

    'use strict';

    window.addEventListener ("load", pageFullyLoaded);
    function pageFullyLoaded () {
        console.log ("==> Page is fully loaded, including images.", new Date() );
        setTimeout(alertFunc, 1000);

        function alertFunc() {

            $("input[type=radio][value='1']").attr("checked","checked");

        }

    }

    // Your code here...
})();