sanitysama

Untitled

Jun 15th, 2013
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name          YouTube Comment Hider
  3. // @namespace     http://example.org
  4. // @description   Hides YouTube Comments on the new design
  5. // @include       http://*.youtube.com/*
  6. // ==/UserScript==
  7.  
  8. var discussion = document.getElementById('watch-discussion');
  9. if(discussion)
  10.     discussion.style.display = 'none';
  11. var related = document.getElementById('watch7-sidebar');
  12. if(related)
  13.     related.style.display = 'none';
Advertisement
Add Comment
Please, Sign In to add comment