Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name YouTube Comment Hider
- // @namespace http://example.org
- // @description Hides YouTube Comments on the new design
- // @include http://*.youtube.com/*
- // ==/UserScript==
- var discussion = document.getElementById('watch-discussion');
- if(discussion)
- discussion.style.display = 'none';
- var related = document.getElementById('watch7-sidebar');
- if(related)
- related.style.display = 'none';
Advertisement
Add Comment
Please, Sign In to add comment