Greasy Fork is available in English.

问卷星解除禁止选中文本复制

// ==UserScript==
// @name         问卷星解除禁止选中文本复制
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  无
// @author       You
// @match        *://*.wjx.top/*
// @match        *://*.wjx.cn/*
// @grant        none
// ==/UserScript==

(function() {
    document.oncontextmenu=document.onselectstart=null

    // Your code here...
})();