Greasy Fork is available in English.
解除问卷星选中复制粘贴的限制
// ==UserScript==
// @name 问卷星允许选中复制粘贴
// @namespace http://tampermonkey.net/
// @version 0.2
// @author fcwys
// @compatible chrome
// @compatible firefox
// @compatible edge
// @compatible safari
// @description 解除问卷星选中复制粘贴的限制
// @license MIT
// @icon https://www.wjx.cn/favicon.ico
// @match *://*.wjx.cn/*
// @match *://*.wjx.top/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
//允许右键
document.oncontextmenu = function () {
return true;
};
//允许选中
document.onselectstart = function () {
return true;
};
$("html,body,div").css("user-select", "text");
//允许输入框粘贴
$(".textCont,input,textarea").off("paste");
//允许输入框右键
$(".textCont,input,textarea").off("contextmenu");
})();