您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
🏆解除智慧树网复制粘贴限制,随意复制✅随意粘贴✅
当前为
// ==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); })();