// ==UserScript== // @name Remove tails(去除小尾巴) // @namespace Violentmonkey Scripts // @match *://*/* // @grant none // @version 1.01 // @author wray-lee // @license MIT // @description 2023/2/8 18:03:58 // @downloadURL none // ==/UserScript== (function() { 'use strict'; //去除网页小尾巴 [...document.querySelectorAll('*')].forEach(item=>{ item.oncopy = function(e) { e.stopPropagation(); } }); }())