优化掘金的样式

优化掘金的样式,去除了一些ai的广告

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         优化掘金的样式
// @namespace    http://tampermonkey.net/
// @license MIT
// @version      0.1.0
// @description  优化掘金的样式,去除了一些ai的广告
// @icon         https://lf3-cdn-tos.bytescm.com/obj/static/xitu_juejin_web//static/favicons/favicon-32x32.png
// @author       leftover
// @run-at       document-start
// @match        https://juejin.cn/*
// ==/UserScript==

(function() {
    const style = document.createElement("style");
    style.id = "leftover";
    style.innerHTML = `
     .context-menu {
     display: none !important;
     }
     .adverts-list {
      display: none !important;
     }
     .sidebar-block.wechat-sidebar-block.pure.wechat-ad {
        display: none !important;
     }
     .btn.btn-ai {
     display: none !important;
     }
     .more-btn {
       display: none !important;
     }
    `
     document.head.appendChild(style);
})();