remove-b-tail

去掉B站专栏复制的小尾巴

// ==UserScript==
// @name         remove-b-tail
// @namespace    https://github.com/xuqifzz/remove-b-tail
// @version      0.1
// @description  去掉B站专栏复制的小尾巴
// @author       You
// @match        https://www.bilibili.com/read/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    HTMLDivElement.prototype.realAddEventListener = HTMLAnchorElement.prototype.addEventListener;
    HTMLDivElement.prototype.addEventListener = function(a,b,c){
        if(a =="copy") return;
        return this.realAddEventListener(a,b,c);
    };
})();