// ==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 // @downloadURL none // ==/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); })();