Greasy Fork is available in English.

i春秋屏蔽干扰元素

i春秋网站屏蔽干扰元素

// ==UserScript==
// @name           i春秋屏蔽干扰元素
// @author         wusuluren
// @description    i春秋网站屏蔽干扰元素
// @namespace    http://tampermonkey.net/
// @supportURL     https://github.com/Wusuluren
// @version      0.1.1
// @match        *://www.ichunqiu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $('.footer').remove()
    $('.banner').remove()
    $('.csidebar').remove()
    $('.robotWrap').remove()
})();