百度文库免费查询0下载券文档

直接移除百度文库免费查询页面的遮盖层,可直接搜索0下载券文档,若仍只能显示2条,在免费页面刷新解除限制

// ==UserScript==
// @name         百度文库免费查询0下载券文档
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  直接移除百度文库免费查询页面的遮盖层,可直接搜索0下载券文档,若仍只能显示2条,在免费页面刷新解除限制
// @author       someone
// @match        *://wenku.baidu.com/search?word=*&fd=3*
// @match        *://wenku.baidu.com/search?word=*
// @grant        none
// @license 
// ==/UserScript==

(function() {
    'use strict';
    function removeCoverDiv(){
        let coverDiv = document.querySelector(".rights-card-new");
        coverDiv.parentNode.removeChild(coverDiv);
    }
    window.onload = removeCoverDiv;
})();