40 lines
1.0 kB
1
{
2
"manifest_version": 3,
3
"name": "moonlight",
4
"description": "Yet another Discord mod",
5
"version": "1.3.8",
6
"permissions": ["declarativeNetRequestWithHostAccess", "webRequest", "scripting", "webNavigation"],
7
"host_permissions": ["https://moonlight-mod.github.io/*", "https://api.github.com/*", "https://*.discord.com/*"],
8
"content_scripts": [
9
{
10
"js": ["index.js"],
11
"matches": ["https://*.discord.com/*"],
12
"run_at": "document_start",
13
"world": "MAIN"
14
}
15
],
16
"declarative_net_request": {
17
"rule_resources": [
18
{
19
"id": "modifyResponseHeaders",
20
"enabled": true,
21
"path": "modifyResponseHeaders.json"
22
},
23
{
24
"id": "blockLoading",
25
"enabled": true,
26
"path": "blockLoading.json"
27
}
28
]
29
},
30
"background": {
31
"service_worker": "background.js",
32
"type": "module"
33
},
34
"web_accessible_resources": [
35
{
36
"resources": ["index.js"],
37
"matches": ["https://*.discord.com/*"]
38
}
39
]
40
}
41