Greasy Fork is available in English.

不要poop在我的剪貼板, bilibili

Stop pooping on my dear clipboard, bilibili

// ==UserScript==
// @name         不要poop在我的剪貼板, bilibili
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Stop pooping on my dear clipboard, bilibili
// @author       rotatehisglasses
// @match        https://www.bilibili.com/*
// @grant        none
// @run-at       document-start
// @license     WTFPL
// ==/UserScript==

(function() {
    'use strict';

    Element.prototype._addEventListener = Element.prototype.addEventListener;

    Element.prototype.addEventListener = function(type, listener, useCapture=false) {
        if (type !== 'copy'){
            this._addEventListener(type, listener, useCapture);
        }
    };
})();