Skip to content

Instantly share code, notes, and snippets.

@JeremyStarTM
Last active January 16, 2022 11:35
Show Gist options
  • Save JeremyStarTM/9ee7d5ba16fce8096ba28e88930eeeff to your computer and use it in GitHub Desktop.
Save JeremyStarTM/9ee7d5ba16fce8096ba28e88930eeeff to your computer and use it in GitHub Desktop.
Tampermonkey/Geasemonkey script for YouTube Music Library
// ==UserScript==
// @name YouTube Music Library
// @namespace http*://music.youtube.com
// @version 1.1
// @homepage https://gist.github.com/JeremyStarTM/9ee7d5ba16fce8096ba28e88930eeeff
// @description When visiting music.youtube.com, it redirects to the library.
// @author JeremyStarTM
// @match http*://music.youtube.com/
// @icon https://www.google.com/s2/favicons?domain=youtube.com
// @run-at document-start
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.location.href = "https://music.youtube.com/library/playlists"
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment