-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
73 lines (72 loc) · 1.6 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "Selene Modpacker",
"description": "A tool for creating and managing modpacks.",
"author": "Shap_po",
"homepage_url": "https://github.com/shap-po/selene-modpacker",
"version": "1.0.1",
"manifest_version": 3,
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": ["storage", "unlimitedStorage"],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"*://modrinth.com/*",
"*://*.curseforge.com/*",
"*://curse.nikky.moe/*",
"*://*.forgecdn.net/*"
],
"content_scripts": [
{
"matches": ["*://modrinth.com/*"],
"js": ["js/injectors/modrinth/sync-theme.js"],
"all_frames": true
},
{
"matches": ["*://modrinth.com/mod/*"],
"js": [
"js/storage.js",
"js/cache.js",
"js/injectors/modrinth/mod.js"
],
"css": ["style/inject/modrinth.css"],
"all_frames": true
},
{
"matches": ["*://modrinth.com/mods*"],
"js": [
"js/storage.js",
"js/cache.js",
"js/injectors/modrinth/mods.js"
],
"css": ["style/inject/modrinth.css"],
"all_frames": true
},
{
"matches": ["*://*.curseforge.com/minecraft/mc-mods/*"],
"js": [
"js/storage.js",
"js/cache.js",
"js/injectors/curseforge/mod.js"
],
"css": ["style/inject/curseforge.css"],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": ["*://*.curseforge.com/minecraft/mc-mods*"],
"js": [
"js/storage.js",
"js/cache.js",
"js/injectors/curseforge/mods.js"
],
"css": ["style/inject/curseforge.css"],
"all_frames": true,
"run_at": "document_start"
}
]
}