阻止拷贝文档添加版权信息

原理就是覆盖剪切板,理论上大部分网站都支持

// ==UserScript==
// @name         阻止拷贝文档添加版权信息
// @version      2.0
// @author       xf
// @description  原理就是覆盖剪切板,理论上大部分网站都支持
// @include        *
// @license MIT
// @namespace https://greasyfork.org/users/392746
// ==/UserScript==

(function() {
    'use strict';
    [...document.querySelectorAll('*')].forEach(item=>{    item.oncopy = function(e) {        e.stopPropagation();    }});

})();