Greasy Fork is available in English.

bilibili专栏去不能选择

让专栏文章可以选择文字

// ==UserScript==
// @name         bilibili专栏去不能选择
// @namespace    http://blog.gfdsa.net/
// @version      0.1
// @description  让专栏文章可以选择文字
// @author       youxiachai
// @match        *://*.bilibili.com/read/*
// @grant        GM_registerMenuCommand
// @grant        unsafeWindow
// @license      WTFPL
// ==/UserScript==

var docElements = unsafeWindow.document.querySelectorAll(".unable-reprint")
var i = 0

function removeForce() {
    'use strict';
     for (var unableReprint of docElements) {
         unableReprint.classList.remove("unable-reprint")
     }
}

function revertAll() {
    'use strict';
     for (var reprint of docElements) {
         reprint.classList.add("unable-reprint")
     }
}

GM_registerMenuCommand("可以选择文字", removeForce, '', '', 'j');
GM_registerMenuCommand("不可以选择文字", revertAll, '', '', 'j');