Skip to content

Instantly share code, notes, and snippets.

@dimhold
Last active August 29, 2015 14:05
Show Gist options
  • Save dimhold/77f8a340d6888d8f4553 to your computer and use it in GitHub Desktop.
Save dimhold/77f8a340d6888d8f4553 to your computer and use it in GitHub Desktop.
Make My Subscriptions tab clickable for refresh
// ==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