```
// ==UserScript==
// @name 水木社区去广告
// @namespace
http://tampermonkey.net/// @version 0.1
// @description try to take over the world!
// @author You
// @match
https://www.newsmth.net/*
// @icon
https://www.google.com/s2/favicons?sz=64&domain=mathjax.org// @grant none
// ==/UserScript==
(function() {
'use strict';
var elementStyle = document.createElement("style");
elementStyle.appendChild(document.createTextNode(
'#left_adv{opacity:0}\n ul.banner_show{opacity:0} \n'
+'#midadv_slider{opacity:0;\n height:0px!important}\n'
+'#botadv_slider,.botadv_show,.botadv_show li, .botadv_show a,.botadv_show img{opacity:0;\n height:0px!important}\n'
+'.ad.full_ad{opacity:0;\n height:0px!important}\n'
+'.ad.half_ad:has(>[href*="/ADAgent_TG/"]){opacity:0;\n height:0px!important}\n'
//+'body{font-family:"Sarasa Mono SC","quote","Helvetica Neue","Luxi Sans","DejaVu Sans","Hiragino Sans GB","Microsoft Yahei",sans-serif,"Win10 Emoji","Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji","Segoe UI Symbol","Android Emoji","EmojiSymbols"!important;}'
));
document.head.appendChild(elementStyle);
})();
```
--
FROM 183.172.225.*