// ==UserScript== // @name 简书推荐屏蔽 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 屏蔽简书右侧和正文下方的垃圾推荐 // @author Annunx // @match *://www.jianshu.com/p/* // @icon https://www.google.com/s2/favicons?sz=64&domain=jianshu.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function () { 'use strict'; window.onload = function () { removeJanshuRecommend() } // 清理元素 function removeJanshuRecommend() { document.getElementsByTagName('aside')[0].remove() const sections = document.querySelectorAll('section') if (sections.length > 0) { sections[1].remove() } } })();