Greasy Fork is available in English.

解除B站文字复制引用后缀

如题

// ==UserScript==
// @name         解除B站文字复制引用后缀
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  如题
// @author       Liaune
// @license      MIT
// @match        *://www.bilibili.com/read*
// @grant        none
// ==/UserScript==

(function() {
   window.addEventListener('copy', function(e){e.stopPropagation()}, true);
})();