// ==UserScript== // @name StackOverflow净化器 // @namespace https://github.com/EternalPhane/UserScripts/ // @version 0.2.3 // @description 屏蔽某个智障用户Ciro Santilli // @author EternalPhane // @include /^https?:\/\/(\w+\.)?stack(overflow|exchange)\.com\// // @include /^https?:\/\/(\w+\.)?askubuntu\.com\// // @include /^https?:\/\/(\w+\.)?serverfault\.com\// // @downloadURL none // ==/UserScript== (() => { 'use strict'; $(() => { $('.user-info:contains(Ciro Santilli)').remove(); $('.comment-user:contains(Ciro Santilli)').remove(); }); })();