// ==UserScript== // @name B站复制粘贴去掉小尾巴 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 去除B站文字复制粘贴后带有作者、链接和出处的小尾巴 // @author Ink // @match *.bilibili.com/* // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; [...document.querySelectorAll('*')].forEach(item=>{ item.oncopy = function(e) { e.stopPropagation(); } }); })();