// ==UserScript== // @name hideWaterTweets // @namespace http://tampermonkey.net/ // @version 0.1 // @description Hide the foolish 12 years old trash tweets // @author You // @match https://www.oschina.net/tweets // @grant none // ==/UserScript== (function() { 'use strict'; const hideWaterTweets = ()=>$('.tweet-list a[href="https://www.oschina.net/tweet-topic/%E5%BC%80%E6%BA%90%E4%B8%AD%E5%9B%BD12%E5%91%A8%E5%B9%B4%E5%BA%86"]').parent().parent().parent().parent('.tweet-item').hide() hideWaterTweets() $("<style>.www-tweet .tweet-list .tweet-item:after{display:none}</style>").appendTo('head') $(window).scroll(function(event){ hideWaterTweets() }); })();