Greasy Fork is available in English.

解除B站专栏复制限制(2022)

B站复制限制解除

// ==UserScript==
// @name         解除B站专栏复制限制(2022)
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  B站复制限制解除
// @author       popyoung
// @match        https://www.bilibili.com/read/cv*
// @grant        unsafeWindow
// @run-at       document-end
// @license MIT
// ==/UserScript==

function trueCopy(e)
{
    e.clipboardData.setData("text",window.getSelection().toString())
    e.stopImmediatePropagation();
}

(function() {
    var a=document.querySelector('div.article-content');
    a.addEventListener('copy',trueCopy);
}

)();