您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
安全教育平台 自动答题
// ==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... })();