-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (32 loc) · 887 Bytes
/
manifest.json
File metadata and controls
33 lines (32 loc) · 887 Bytes
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": 2,
"name": "Flowbot44's Axie Infinity Extension",
"description": "This extension will help with some Axie damage calculations",
"version": "1.2.0",
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"matches": ["https://marketplace.axieinfinity.com/axie/*"],
"js": ["contentScript.js"]
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"permissions": [
"https://marketplace.axieinfinity.com/axie/*","tabs", "webNavigation"
]
}