-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.24 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
{
"manifest_version": 3,
"name": "35 Pokes Extension",
"description": "Browser extension for the 35 Pokes community",
"version": "0.5",
"homepage_url": "https://github.com/swordfishtr/35PokesExtension",
"icons": {
"48": "35_logo.PNG"
},
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js",
"scripts": ["background.js"],
"type": "module"
},
"content_scripts": [{
"matches": ["https://play.pokemonshowdown.com/*"],
"js": ["content_main.js"],
"run_at": "document_end",
"world": "MAIN"
}, {
"matches": ["https://play.pokemonshowdown.com/*"],
"js": ["content_iso.js"],
"run_at": "document_idle",
"world": "ISOLATED"
}],
"permissions": ["storage"],
"host_permissions": [
"https://api.github.com/repos/swordfishtr/*",
"https://codeload.github.com/swordfishtr/*"
],
"minimum_chrome_version": "121",
"browser_specific_settings": {
"gecko": {
"id": "35pokes.demirab1@smogon",
"strict_min_version": "121.0"
},
"gecko_android": {
"strict_min_version": "121.0"
}
}
}