diff --git a/extension/manifest.json b/extension/manifest.json index f7c59d9..a5dee74 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -1,15 +1,25 @@ { "manifest_version": 3, - "name": "Monochrome Tidal Origin", - "version": "1.0.0", + "name": "Monochrome Tidal Bypass", + "version": "1.0.1", "description": "Adds Origin: https://listen.tidal.com to Tidal CDN requests so audio plays without a proxy", - "permissions": ["declarativeNetRequest", "scripting", "declarativeNetRequestWithHostAccess"], + "browser_specific_settings": { + "gecko": { + "id": "monochrome-tidal-bypass@binimum.org", + "strict_min_version": "111.0" + } + }, + "permissions": [ + "declarativeNetRequest", + "scripting", + "declarativeNetRequestWithHostAccess" + ], "host_permissions": [ "*://*.tidal.com/*", "*://monochrome.tf/*", "*://monochrome.samidy.com/*", "*://lossless.wtf/*", - "*://localhost:*/*" + "*://localhost/*" ], "declarative_net_request": { "rule_resources": [ @@ -26,7 +36,7 @@ "*://monochrome.samidy.com/*", "*://monochrome.tf/*", "*://lossless.wtf/*", - "*://localhost:*/*" + "*://localhost/*" ], "js": ["content.js"], "run_at": "document_start", @@ -41,7 +51,12 @@ "web_accessible_resources": [ { "resources": ["inject.js"], - "matches": ["*://monochrome.samidy.com/*", "*://monochrome.tf/*", "*://lossless.wtf/*", "*://localhost:*/*"] + "matches": [ + "*://monochrome.samidy.com/*", + "*://monochrome.tf/*", + "*://lossless.wtf/*", + "*://localhost/*" + ] } ] }