Redirects youtube.com to youtube.com/feed/music.
// ==UserScript==
// @name Youtube Redirect Music
// @namespace https://youtube.com/
// @version 1.0
// @description Redirects youtube.com to youtube.com/feed/music.
// @author Simon
// @match https://*.youtube.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if(window.location.href == "https://www.youtube.com/"){
location.href = "https://www.youtube.com/feed/music"
}
})();