Skip to content

Instantly share code, notes, and snippets.

@jerico
Last active August 29, 2015 14:02
Show Gist options
  • Save jerico/c2ba247698479cc97fd2 to your computer and use it in GitHub Desktop.
Save jerico/c2ba247698479cc97fd2 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Quiet Youtube
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description enter something useful
// @match http://www.youtube.com
// @copyright 2012+, You
// ==/UserScript==
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = ".feed-container, .watch-sidebar-section, .yt-masthead-logo-container, .comments-iframe-container { display: none !important; }";
document.body.appendChild(css);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment