NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 双卫网过在线检测显示答案 // @namespace https://openuserjs.org // @match https://sww.com.cn/* // @grant none // @version 1.1 // @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);})();