// ==UserScript== // @name Bilibili 专栏去除选中复制限制 // @namespace https://github.com/stormyyd/ // @version 0.0.1 // @description 去除 Bilibili 专栏中的选中及复制限制 // @author stormyyd // @match *://www.bilibili.com/read/* // @license Do What The F*ck You Want To Public License // @downloadURL none // ==/UserScript== (function() { 'use strict' let article = document.getElementsByClassName("article-holder")[0] article.classList.remove("unable-reprint") })();