Skip to content

Instantly share code, notes, and snippets.

@JCGrant
Created September 5, 2016 15:32
Show Gist options
  • Save JCGrant/8b7c64c4ae38c28b26c01f55dea39468 to your computer and use it in GitHub Desktop.
Save JCGrant/8b7c64c4ae38c28b26c01f55dea39468 to your computer and use it in GitHub Desktop.
A User Script which hides the comments section on Youtube
// ==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