-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (37 loc) · 1.15 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
{
"manifest_version": 2,
"name": "Nine Lives",
"description": "This extension allows the user to view and keep track of accessories for their Crypto Kitty.",
"version": "0.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"tabs"
],
"background": {
"scripts": [
"scripts/dependencies/bignumber.min.js",
"scripts/dependencies/web3.min.js",
"scripts/contracts/InitializeWeb3.js",
"scripts/contracts/KryptoKittiesInterface.js",
"scripts/contracts/NineLivesInterface.js",
"scripts/background.js"
]
},
"content_scripts": [
{
"matches": [
"https://www.cryptokitties.co/marketplace/*",
"https://www.cryptokitties.co/kitty/*"
],
"js": [
"scripts/dependencies/bignumber.min.js",
"scripts/dependencies/jquery-3.2.1.min.js",
"scripts/content.js"
]
}
],
"web_accessible_resources": ["svg/*"]
}