百度题库显示答案

百度题库显示答案。

目前為 2023-03-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name         百度题库显示答案
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  百度题库显示答案。
// @author       夜雨
// @match        https://easylearn.baidu.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=easylearn.baidu.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
	'use strict';

	var clearMask = function() {
		if (document.querySelector(".mask")) {
			document.querySelectorAll(".mask").forEach(e => {
				e.remove();
				console.log("清理完毕")
			})
		}
	}

	setTimeout(clearMask, 3000)

	// Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址