知到智慧树 禁止复制 解除限制(作业界面)
-webkit-user-select: none;的原因
目前没找到啊油猴脚本可以解决,只能手动改
-webkit-user-select: text;
有空了,写了个油猴脚本
// ==UserScript== // @name 知到智慧树解除复制限制 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://hiexam.zhihuishu.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zhihuishu.com // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; let css=` .el-radio,.el-checkbox{ -webkit-user-select:text !important; } ` GM_addStyle(css) // Your code here... })();