// ==UserScript== // @name 问卷星允许选中 // @namespace http://tampermonkey.net/ // @version 0.1.1 // @icon https://www.wjx.cn/favicon.ico // @description 问卷星允许选中和右键 // @author CodeLumos // @homepageURL https://github.com/codelumos/tampermonkey-scripts // @match https://ks.wjx.top/jq/* // @grant none // @downloadURL none // ==/UserScript== (function () { 'use strict'; // 允许右键 document.oncontextmenu = function () { return true; }; // 允许选中 document.onselectstart = function () { return true; }; })();