油猴脚本实战(GM_addStyle):修改掘金页面样式,去广告

4,570 阅读1分钟

全过程视频地址: 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...
})();