// ==UserScript== // @name 强制复制 // @namespace https://viayoo.com/ // @version 0.2 // @description 理论上可以复制所有文字 // @author 呆毛飘啊飘 // @run-at document-end // @match https://*/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { var st = document.createElement("style"); st.type = "text/css"; st.innerHTML = "*{user-select: text;}"; document.body.appendChild(st); })();