Greasy Fork is available in English.
bilibili专栏文档允许选择复制
当前为
// ==UserScript==
// @name 哔哩哔哩专栏解除限制
// @namespace https://www.bilibili.com
// @version 2003162
// @description bilibili专栏文档允许选择复制
// @author CNGEGE
// @match *://*.bilibili.com/read/*
// @require https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js
// @grant none
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
$(document).ready(function() {
setTimeout(function(){
$(".article-holder.unable-reprint").unbind();//取消事件绑定,允许复制(防止复制无效)
$(".article-holder.unable-reprint").removeClass("unable-reprint");//移除禁止分享的类
}
, 100);
});
// Your code here...
})();