Created
October 31, 2012 03:39
-
-
Save pmbauer/3984659 to your computer and use it in GitHub Desktop.
youtube recommended channel remover
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 YouTube Recommended Channel Remover | |
// @namespace pmbauer | |
// @description This extremely simple script removes the annoying sidebar on www.youtube.com. | |
// @include http://*.youtube.* | |
// @include https://*.youtube.* | |
// ==/UserScript== | |
document.getElementById("video-sidebar").style.display = "none"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment