diff --git a/src/content.ts b/src/content.ts index 8c761ecc..6cf3200e 100644 --- a/src/content.ts +++ b/src/content.ts @@ -760,7 +760,7 @@ function getYouTubeVideoID(url: string) { onInvidious = true; } else if (urlObject.host === "m.youtube.com") { onMobileYouTube = true; - } else if (!["m.youtube.com", "www.youtube.com", "www.youtube-nocookie.com"].includes(urlObject.host)) { + } else if (!["m.youtube.com", "www.youtube.com", "www.youtube-nocookie.com", "music.youtube.com"].includes(urlObject.host)) { if (!Config.config) { // Call this later, in case this is an Invidious tab utils.wait(() => Config.config !== null).then(() => videoIDChange(getYouTubeVideoID(url)));