// ==UserScript== // @name 问卷星允许选中 // @namespace https://github.com/HaoNShi/Tampermonkey_Scripts // @version 0.1 // @icon https://www.wjx.cn/favicon.ico // @description 问卷星允许选中和右键 // @author HaoNShi // @match https://ks.wjx.top/jq/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... // 允许右键 document.oncontextmenu = function(e) { return true; }; // 允许选中 document.onselectstart = function(e) { return true; }; })();