Update manifest.json

This commit is contained in:
binimum 2026-04-21 21:27:15 +01:00 committed by GitHub
parent b551554f39
commit 1b7e993d3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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/*"
]
}
]
}