forked from freakitties/axieExt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 1.07 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
{
"name": "Freak's Axie Extension",
"version": "1.5.2",
"description": "An extension to help play Axie Infinity.",
"permissions": ["activeTab", "declarativeContent", "storage"],
"icons": {
"16": "images/rep_icon16.png",
"32": "images/rep_icon32.png",
"48": "images/rep_icon48.png",
"128": "images/rep_icon128.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "Freak's Axie Extension",
"default_icon": {
"16": "images/rep_icon16.png",
"32": "images/rep_icon32.png",
"48": "images/rep_icon48.png",
"128": "images/rep_icon128.png"
}
},
"background": {
"scripts": ["options.js", "lib/web3.min.js", "background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://marketplace.axieinfinity.com/*"],
"js": ["options.js", "traitmapping.js", "contentScript.js"]
}
],
"web_accessible_resources": [
"body-parts.json"
],
"manifest_version": 2
}