NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Hide liked tweets // @namespace http://ivanca.pro/ // @version 0.1 // @description Hide "liked" tweets from twitter feed // @author Ivan Castellanos // @match https://twitter.com/* // @grant none // ==/UserScript== (function(doc) { 'use strict'; setInterval(() => { [...doc.querySelectorAll('.Icon--heartBadge')].forEach(function(ele){ if (!ele.hidden) { ele.closest('.tweet').style.display = "none"; ele.hidden = true; } }); }, 500); })(document);