您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
修正考试星助手0.1复制答案失效的问题
// ==UserScript== // @name 考试星开启复制答案 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 修正考试星助手0.1复制答案失效的问题 // @author You // @match https://exam.kaoshixing.com/exam/* // @grant GM_addStyle // @license MIT // ==/UserScript== (function() { 'use strict'; const style = ` .questions { -webkit-touch-callout: auto; -webkit-user-select: auto; -khtml-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; user-select: auto; }`; GM_addStyle(style); })();