Greasy Fork is available in English.
IT之家首页广告移除,不确定其他页面,懒得试了
// ==UserScript==
// @name IT之家首页广告移除
// @namespace http://tampermonkey.net/
// @version 2025-12-08
// @description IT之家首页广告移除,不确定其他页面,懒得试了
// @author FC
// @license MIT
// @include *://*.ithome.com/*
// @match *://*.ithome.com/*
// @icon https://www.ithome.com/favicon.ico
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('.ad').parent('li').remove();
})();