移除简书文章推荐

JianShu remove recommend article

// ==UserScript==
// @name         移除简书文章推荐
// @namespace    lesterxiao
// @version      1.0
// @description  JianShu remove recommend article
// @author       lesterxiao
// @license      MIT
// @match        https://www.jianshu.com/p/*
// @icon         https://www.jianshu.com/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    setTimeout(function() {
        document.getElementsByClassName("ouvJEz")[1].remove();
        console.log("文章推荐列表已删除");
    }, 1000);
})();