Guest User

Untitled

a guest
Dec 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1.  
  2. //just run this in the javascript console and you won't have to see that user's tweets until you leave or refresh the page!
  3. function hideTweetsFromScreenName(s) {
  4. var tweets = document.querySelectorAll('[data-screen-name='+s+']');
  5. var length = tweets.length;
  6. while(length--)
  7. tweets[length].parentNode.hidden = true;
  8. setTimeout((function(){ hideTweetsFromScreenName(s);}),100);
  9. };
Add Comment
Please, Sign In to add comment