Created
September 5, 2016 15:32
-
-
Save JCGrant/8b7c64c4ae38c28b26c01f55dea39468 to your computer and use it in GitHub Desktop.
A User Script which hides the comments section on Youtube
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Hide Youtube Comments | |
// @namespace https://gist.github.com/JCGrant/8b7c64c4ae38c28b26c01f55dea39468 | |
// @version 0.1 | |
// @description Hide Youtube Comments | |
// @author JCGrant | |
// @match https://www.youtube.com/watch* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.getElementById('watch-discussion').hidden = true; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment