您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
此脚本在 EWT 试题中获取试题分析。
// ==UserScript== // @name 升学 E 网通 (EWT360) 试题分析获取 - Beta // @name:en EWT Exam Analyse Getter - Beta // @namespace https://ewt.houtar.eu.org/examanswer // @version 0.1.0 // @description 此脚本在 EWT 试题中获取试题分析。 // @description:en This script gets exam answer analysis in EWT exam. // @author Houtar // @match https://web.ewt360.com/mystudy/ // @icon https://www.google.com/s2/favicons?sz=64&domain=ewt360.com // @grant none // @license GNU General Public License // ==/UserScript== (function () { "use strict"; if (!document.location.hash.includes("exam/answer")) { return; } fetch( "https://web.ewt360.com/customerApi/api/studyprod/web/answer/paper" + document.location.hash.slice(13) ).then(function (p) { return p.json(); }).then(function (d) { var a = ""; d = d.data.questions; for (var t in d) { var n = parseInt(t, 10) + 1; var cq = d[t].childQuestions; if (cq[0]) { for (var c in cq) { var cn = parseInt(c, 10) + 1; var ca = cq[c].analyse; a += "<h4>" + n + "." + cn + ": </h4>" + ca + "<br>"; } } else { a += "<h4>" + n + ": </h4>" + d[t].analyse + "<br>"; } } var nw = window.open("", "_blank", "popup"); if (nw) { nw.document.body.innerHTML = a; } else { window.alert( "The window wasn't allowed to open\nThis is likely caused by built-in popup blockers." ); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址