New Userscript

Bilibili解除文章复制限制

As of 2020-11-06. See the latest version.

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Bilibili解除文章复制限制
// @author       DLHTX
// @match        https://www.bilibili.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementsByClassName("article-holder")[0].style.userSelect = "text"
    // Your code here...
})();