Remove Promoted Tweets

Block promoted tweets on Twitter

  1. // ==UserScript==
  2. // @name Remove Promoted Tweets
  3. // @namespace spookysaladgardener.tumblr.com
  4. // @description:en Block promoted tweets on Twitter
  5. // @include *
  6. // @version 1
  7. // @grant none
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  9. // @description Block promoted tweets on Twitter
  10. // ==/UserScript==
  11.  
  12. this.$ = this.jQuery = jQuery.noConflict(true);
  13.  
  14. function hide_promoted() {
  15.  
  16. $("span.class:contains(Icon Icon--promoted)").parent().parent().parent().remove();
  17. }
  18.  
  19. window.setInterval(function(){
  20. hide_promoted();
  21. }, (1000));