Greasy Fork

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

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

当前为 2023-11-19 提交的版本,查看 最新版本

// ==UserScript==
// @name         🥇智慧树网复制粘贴限制解除
// @version      2.0
// @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';

    document.getSelection = function () {
        return {
            removeAllRanges: function () {
                // Do nothing or handle the function differently
            }
        };
    };

    setTimeout(function () {
        // 允许选择文本
        document.onselectstart = true;
        // 允许复制剪切粘贴和鼠标右键菜单操作
        document.oncopy = true;
        document.oncut = true;
        document.onpaste = true;
        document.oncontextmenu = true;
    }, 3000);
    var style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = 'body * {user-select: text !important;}';
    document.getElementsByTagName('head')[0].appendChild(style);
})();