您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动听课、考试、答题、交卷,不解释,尽快学习,失效不修复。
// ==UserScript== // @name 双卫网省点心吧 // @namespace Violentmonkey Scripts // @match https://*sww.com.cn/* // @grant none // @version 1.2 // @author kubixueyiren // @description 自动听课、考试、答题、交卷,不解释,尽快学习,失效不修复。 // @license MIT // ==/UserScript== $(document).ready( function() {$("li[is_right=1]").each(function(e, f) {$(this).find("span").click()});}); $(document).ready( function(){$(this).find("#btn-submit.jiaoquan").click()}); (function() {'use strict';if (!isPopQuestion) {isPopQuestion = true;}; var observer = new MutationObserver(function(mutations){mutations.forEach(function(mutation) {var confirmButton = document.querySelector('#btnKaoShi.kaoshi'); if (confirmButton) {observer.disconnect(); confirmButton.click(); } }); }); var targetNode = document.body; var config = { childList: true, subtree: true }; observer.observe(targetNode, config);})();