Last active
August 29, 2015 14:05
-
-
Save dimhold/77f8a340d6888d8f4553 to your computer and use it in GitHub Desktop.
Make My Subscriptions tab clickable for refresh
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-subscriptions-refresh.user.js | |
// @namespace https://www.youtube.com/feed/subscriptions | |
// @description Make My Subscriptions tab clickable for refresh | |
// @include https://www.youtube.com/feed/subscriptions | |
// @version 1.0.0 | |
// @grant none | |
// ==/UserScript== | |
var tab = document.getElementsByClassName("epic-nav-item-heading")[0]; | |
tab.addEventListener("click", function () { | |
location.reload(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment