您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
破解口语 100 听说测试
// ==UserScript== // @name 口语 100 破解修改版(请仔细观看使用方法) // @namespace yuchenzhiyi // @version 1.0.0 // @description 破解口语 100 听说测试 // @author PencilX Studio // @license MIT // @match *://ah.kouyu100.com/* // @icon https://static2.kouyu100.com/favicon.ico // @require https://cdn.staticfile.org/jquery/3.6.0/jquery.min.js // @require https://greasyfork.org/scripts/441806/code/jquery-tools.js // ==/UserScript== function getInfo() { // 获取必要信息 const schoolPattern = /^\/(.+)\/.*/; const resSchoolName = schoolPattern.exec(location.pathname); const schoolNameId = resSchoolName[1]; const examId = $('#examId').val(); return { examId, schoolNameId }; } function loadAnswer() { // 获取答案并加载 const info = getInfo(); $.ajax({ type: 'get', url: `//ah.kouyu100.com/${info.schoolNameId}/findTitleAnswerText.action?listenExamTitleText.examId=${info.examId}`, dataType: 'json', success: function (response) { const answers = response.listenExamTitleTextList; for (const answer of answers) { var answerElement = $(`[titleid=${answer.titleId}]`)[0]; var answerDiv = document.createElement('div'); answerDiv.style.color = 'red'; answerDiv.style.fontWeight = 'bold'; answerDiv.innerText = `【答案】${answer.content1}`; answerElement.appendChild(answerDiv); } }, }); } function main() { const path = location.pathname; if (/^\/.*\/spokenExam.action$/.test(path)) { loadAnswer(); } } $('#viewGroupList').wait(main); // 切换试卷时的处理方式,因为是元素异步加载的,所以要在大项加载后重新绑定事件 $('.not_cur_exam').click(loadAnswer); $('.unchecked').click(() => { $('.not_cur_exam').click(loadAnswer); }); setInterval(function () { // 开启跳过放音功能 const tip = $('.record-tips').text(); if ($('.test').css('display') == 'inline-block') { $('.skip').css('display', 'none'); } else { $('.skip').css('display', 'inline-block'); if (tip.indexOf('正在录音') == -1) { $('.skip').removeClass('disabled'); } else { $('.skip').addClass('disabled'); } } }, 20);