Update manifest.json
This commit is contained in:
parent
b551554f39
commit
1b7e993d3b
1 changed files with 21 additions and 6 deletions
|
|
@ -1,15 +1,25 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Monochrome Tidal Origin",
|
"name": "Monochrome Tidal Bypass",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "Adds Origin: https://listen.tidal.com to Tidal CDN requests so audio plays without a proxy",
|
"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": [
|
"host_permissions": [
|
||||||
"*://*.tidal.com/*",
|
"*://*.tidal.com/*",
|
||||||
"*://monochrome.tf/*",
|
"*://monochrome.tf/*",
|
||||||
"*://monochrome.samidy.com/*",
|
"*://monochrome.samidy.com/*",
|
||||||
"*://lossless.wtf/*",
|
"*://lossless.wtf/*",
|
||||||
"*://localhost:*/*"
|
"*://localhost/*"
|
||||||
],
|
],
|
||||||
"declarative_net_request": {
|
"declarative_net_request": {
|
||||||
"rule_resources": [
|
"rule_resources": [
|
||||||
|
|
@ -26,7 +36,7 @@
|
||||||
"*://monochrome.samidy.com/*",
|
"*://monochrome.samidy.com/*",
|
||||||
"*://monochrome.tf/*",
|
"*://monochrome.tf/*",
|
||||||
"*://lossless.wtf/*",
|
"*://lossless.wtf/*",
|
||||||
"*://localhost:*/*"
|
"*://localhost/*"
|
||||||
],
|
],
|
||||||
"js": ["content.js"],
|
"js": ["content.js"],
|
||||||
"run_at": "document_start",
|
"run_at": "document_start",
|
||||||
|
|
@ -41,7 +51,12 @@
|
||||||
"web_accessible_resources": [
|
"web_accessible_resources": [
|
||||||
{
|
{
|
||||||
"resources": ["inject.js"],
|
"resources": ["inject.js"],
|
||||||
"matches": ["*://monochrome.samidy.com/*", "*://monochrome.tf/*", "*://lossless.wtf/*", "*://localhost:*/*"]
|
"matches": [
|
||||||
|
"*://monochrome.samidy.com/*",
|
||||||
|
"*://monochrome.tf/*",
|
||||||
|
"*://lossless.wtf/*",
|
||||||
|
"*://localhost/*"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue