Created
March 23, 2015 08:24
-
-
Save nick0x01/a5c10106d35716aa35e8 to your computer and use it in GitHub Desktop.
UserScript hides the block with recommended video on Youtube home page
This file contains hidden or 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 home page without recommended block | |
// @namespace bb20ce10-d0d4-11e4-b9d6-1681e6b88ec1 | |
// @include http://www.youtube.com/ | |
// @include https://www.youtube.com/ | |
// @version 1.0 | |
// @grant none | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
// ==/UserScript== | |
$("ol .item-section").has("[href='/feed/recommended']").css("display", "none"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment