Greasy Fork is available in English.
掘金自动去除扩展广告,避免手动关闭
当前为
// ==UserScript==
// @name 掘金自动去除扩展广告
// @namespace zzz
// @version 1.0
// @description 掘金自动去除扩展广告,避免手动关闭
// @author bingyang
// @match https://juejin.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if(!localStorage.getItem('hideExtension')){
localStorage.setItem('hideExtension',true)
}
// Your code here...
})();