Greasy Fork

🥇智慧树网复制粘贴限制解除

🏆解除智慧树网复制粘贴限制,随意复制✅随意粘贴✅

当前为 2023-05-20 提交的版本,查看 最新版本

// ==UserScript==
// @name         🥇智慧树网复制粘贴限制解除
// @version      1.1
// @description  🏆解除智慧树网复制粘贴限制,随意复制✅随意粘贴✅
// @author       Zhong
// @match        *://*.zhihuishu.com/*
// @icon         https://qah5.zhihuishu.com/favicon.ico
// @grant        none
// @namespace https://greasyfork.org/users/1080809
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(function(){
        // 允许选择文本
        document.onselectstart = function(evt) {
            return true;
        };
        // 允许复制剪切粘贴和鼠标右键菜单操作
        document.oncopy = function(evt) {
            return true;
        };
        document.oncut = function(evt) {
            return true;
        };
        document.onpaste = function(evt) {
            return true;
        };
        document.oncontextmenu = function(evt) {
            return true;
        };
    }, 1000);

})();