Greasy Fork is available in English.

百度文库去复制限制

try to take over the world!

// ==UserScript==
// @name         百度文库去复制限制
// @namespace    https://github.com/hzmming
// @version      0.1
// @description  try to take over the world!
// @author       LoryHuang
// @match        https://wenku.baidu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 原文档节点
    var docElem = document.getElementsByClassName('bd doc-reader')[0];
    var copyElem = docElem.cloneNode(true);//true表示深度克隆
    copyElem.oncopy = ''; //还原copy功能
    // 替换原文档节点
    docElem.replaceWith(copyElem)
})();