Greasy Fork is available in English.

知识产权与大数据实验室文章阅读优化

无干扰阅读

// ==UserScript==
// @name         知识产权与大数据实验室文章阅读优化
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  无干扰阅读
// @author       HaoKJ
// @match        https://wp.recgroup.cn/?p=*
// @grant        none
// @run-at       document-end
// @grant        GM_addStyle
// ==/UserScript==
(function() {
'use strict';
document.querySelector("#main-header").style.display="none";
document.querySelector("#secondary").style.display="none";

})();