全过程视频地址: www.bilibili.com/video/BV1nh…
直接复制粘贴去测试即可
// ==UserScript==
// @name 修改掘金广告
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://juejin.im/post/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
let css=`
.sidebar [place="post"],
.app-download-sidebar-block,
.wechat-sidebar-block,.article-banner{
display:none
}
`
GM_addStyle(css)
// Your code here...
})();