您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
超星考试允许复制
// ==UserScript== // @name 允许复制 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 超星考试允许复制 // @author PRO // @match https://mooc1.chaoxing.com/exam-ans/exam/test/reVersionTestStartNew* // @icon http://chaoxing.com/favicon.ico // @grant none // @license gpl-3.0 // ==/UserScript== (function() { 'use strict'; document.body.attributes.removeNamedItem("onselectstart"); let css = document.createElement("style"); css.textContent = `html:not(input):not(textarea):not(select):not(option):not(button){ -webkit-touch-callout: unset !important; -webkit-user-select: unset !important; -khtml-user-select: unset !important; -moz-user-select: unset !important; -ms-user-select: unset !important; user-select: unset !important; }`; document.head.appendChild(css); })();