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