From a898bb2640bc93f0d760d1c1b96bdc71d98c6abb Mon Sep 17 00:00:00 2001 From: Sylvain Reynaud Date: Thu, 20 Oct 2022 18:49:18 +0200 Subject: [PATCH] fix: exclude music.youtube.com from matched urls --- manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 932b3dc..6baeb66 100644 --- a/manifest.json +++ b/manifest.json @@ -16,7 +16,8 @@ { "css": ["styles.css"], "js": ["content.js"], - "matches": ["https://*.youtube.com/*"] + "matches": ["https://*.youtube.com/*"], + "exclude_matches": ["https://music.youtube.com/*"] } ] }