-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.json
33 lines (33 loc) · 941 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
{
"manifest_version": 3,
"name": "35 Pokes Showdown Filter",
"description": "This extension allows 35 Pokes users to filter the showdown teambuilder in order to only display the 35 current pokemon.",
"version": "1.3",
"icons": {
"16": "images/35_logo.PNG",
"32": "images/35_logo.PNG",
"48": "images/35_logo.PNG",
"128": "images/35_logo.PNG"
},
"action": {
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"js": ["scripts/content.js"],
"matches": ["https://play.pokemonshowdown.com/*"]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"https://samuel-peter-chowdhury.github.io/*"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}