-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
36 lines (36 loc) · 909 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"manifest_version": 3,
"name": "DownQ",
"description": "Unofficial tool for downloading and downgrading games from the Oculus or Meta store.",
"version": "1.5.0",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": ["cookies", "tabs", "declarativeNetRequest"],
"host_permissions": ["*://*.oculus.com/*", "*://*.meta.com/*"],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset",
"enabled": true,
"path": "rules.json"
}
]
},
"background": {
"service_worker": "CookieMonster.js"
},
"content_scripts": [
{
"run_at": "document_start",
"js": ["lib/unzip.min.js", "lib/inflate.min.js", "DownQuest.js"],
"css": ["styles.css"],
"matches": [
"*://*.meta.com/*/experiences/*",
"*://*.meta.com/*/experiences/pcvr/*"
]
}
]
}