油猴脚本- 360doc

本脚本用于绕过360doc网站未登录用户复制限制。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// ==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;
})
})();