// ==UserScript== // @name 破除哔哩哔哩专栏文本复制限制 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 破除哔哩哔哩专栏无法复制 // @author Jelly // @match https://www.bilibili.com/read/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var x = document.getElementsByClassName("unable-reprint"); var i; for(i = 0; i < x.length; i++){ x[i].classList.remove("unable-reprint"); } // Your code here... })();