// ==UserScript== // @name 煎蛋广告删除 // @namespace http://tampermonkey.net/ // @version 2024-02-05 // @description 屏蔽煎蛋广告栏 // @author You // @match https://jandan.net/treehole // @icon https://www.google.com/s2/favicons?sz=64&domain=jandan.net // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 屏蔽广告栏 $("#sidebar").remove() $("#content").width("100%") })();