Skip to content

Instantly share code, notes, and snippets.

@steeleforge
steeleforge / hidepromotedtweets
Created July 7, 2019 20:47
hide promoted tweets
javascript:[...document.querySelectorAll('.promoted-account,.promoted-trend,.promoted-tweet')].map(el=>el.style.cssText='display:none!important');localStorage.removeItem('promoted_accounts');
@steeleforge
steeleforge / blockpromoted.js
Created July 7, 2019 21:40
block twitter users with promoted ads
javascript:localStorage.removeItem( 'promoted_accounts' );[...document.querySelectorAll('.promoted-account, .promoted-trend, .promoted-tweet')].map(el=>el.style.cssText='display:none!important');[...document.querySelectorAll('.promoted-tweet .js-actionBlock button')].map(el=>{if($){setTimeout(function() { $(el).trigger('click');$('.block-button').click(); },500) }});