Greasy Fork is available in English.
掘金自动去除扩展广告,避免手动关闭
// ==UserScript==
// @name 掘金自动去除扩展广告
// @namespace zzz
// @version 1.2
// @description 掘金自动去除扩展广告,避免手动关闭
// @icon https://lf3-cdn-tos.bytescm.com/obj/static/xitu_juejin_web//static/favicons/favicon-32x32.png
// @author rt
// @match https://juejin.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if(!localStorage.getItem('hideExtension')){
localStorage.setItem('hideExtension',true)
}
// Your code here...
})();