27 lines
591 B
1
{
2
"manifest_version": 2,
3
"name": "moonlight",
4
"description": "Yet another Discord mod",
5
"version": "1.3.9",
6
"permissions": [
7
"webRequest",
8
"webRequestBlocking",
9
"scripting",
10
"webNavigation",
11
"https://*.discord.com/assets/*.js",
12
"https://moonlight-mod.github.io/*",
13
"https://api.github.com/*",
14
"https://*.discord.com/*"
15
],
16
"background": {
17
"scripts": ["background.js"]
18
},
19
"content_scripts": [
20
{
21
"js": ["index.js"],
22
"matches": ["https://*.discord.com/*"],
23
"run_at": "document_start",
24
"world": "MAIN"
25
}
26
]
27
}
28