YouTube Music to YouTube Redirect

Quickly jump from YouTube Music to YouTube with one click (Redirects you from music.youtube.com to youtube.com)

// ==UserScript==
// @name         YouTube Music to YouTube Redirect
// @version      1.4
// @author       Ezektor
// @description  Quickly jump from YouTube Music to YouTube with one click (Redirects you from music.youtube.com to youtube.com)
// @match        http*://music.youtube.com/*
// @grant        none
// @icon         https://music.youtube.com/favicon.ico
// @namespace    https://greasyfork.org/users/1414348
// ==/UserScript==

(function() {
    'use strict';

    const button = document.createElement('button');
    button.textContent = 'Go to YouTube';
    button.style.position = 'fixed';
    button.style.top = '80px';
    button.style.right = '20px';
    button.style.zIndex = '9999';
    button.style.padding = '10px 15px';
    button.style.backgroundColor = '#ff0000';
    button.style.color = '#ffffff';
    button.style.border = 'none';
    button.style.borderRadius = '5px';
    button.style.cursor = 'pointer';
    button.style.fontSize = '14px';

    button.addEventListener('click', () => {
        const newUrl = window.location.href.replace('music.youtube.com', 'youtube.com');
        window.location.href = newUrl;
    });

    document.body.appendChild(button);
})();