NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Hide twitter posts with low or no retweets // @discription blah // @namespace covertanonymous // @include *twitter.com/ // @exclude *twitter.com/*/status/* // @require http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.js // @grant none // ==/UserScript== (function($) { var refreshId = setInterval( function() { $('.ProfileTweet-actionCountForPresentation').filter( function(){ return parseInt($(this).text())<2; } ) .closest(".js-stream-item").hide(); }, 3000); //rescans every 3000ms, used for 'load more' }(jQuery)); (function($) { var refreshId = setInterval( function() { $(".ProfileTweet-actionButtonUndo .ProfileTweet-actionCount--isZero").closest(".stream-item").hide(); }, 3000); //rescans every 3000ms, used for 'load more' }(jQuery));