油猴脚本- 360doc 发表于 2026-01-04 更新于 2026-03-12 分类于 备忘 , 油猴 阅读次数: 本脚本用于绕过360doc网站未登录用户复制限制。 12345678910111213141516171819// ==UserScript==// @name 取消复制限制// @namespace http://tampermonkey.net/// @version 2026-01-04// @description try to take over the world!// @author You// @match http://www.360doc.com/**// @icon https://www.google.com/s2/favicons?sz=64&domain=360doc.com// @grant none// ==/UserScript==(function() { 'use strict'; // Your code here... window.addEventListener('load', () => { document.body.oncopy = null; })})();