-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
34 lines (31 loc) · 854 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
34
{
"manifest_version": 2,
"name": "Bitcoin Address Lookup",
"version": "1.0.0.1",
"description": "Get instant balance of any bitcoin address on any webpage. Hold the left alt-key and click or select the address to get balance.",
"icons": {
"16": "/images/icon16.png",
"32": "/images/icon32.png",
"64": "/images/icon64.png",
"128": "/images/icon128.png"
},
"background": {
"scripts": [
"script/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"css": ["css/content.css"],
"js": ["script/contentScript.js"]
}
],
"permissions": [
"storage",
"http://*/*",
"https://*/*",
"contentSettings"
]
}