// ==UserScript== // @name 简书去除右侧推荐故事 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 通过css去掉简书右侧的故事推荐 // @author You // @match https://www.jianshu.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(() => { const url = window.location.href; if (url.includes('jianshu')) { const arr = document.querySelectorAll('._3Z3nHf'); arr[1].style.cssText = 'display: none'; } }, 3000); })();