forked from darkwallet/darkwallet
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 751 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 751 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
{
"name": "Dark Wallet",
"description": "Your keys. Your privacy. Your sovereignty.",
"homepage_url": "https://darkwallet.is",
"version": "0.1.0",
"manifest_version": 2,
"icons": {
"128": "images/icon_128.png"
},
"browser_action": {
"default_title": "Dark Wallet",
"default_icon": "images/icon_128.png",
"default_popup": "html/popup.html"
},
"background": {
"page": "html/background.html"
},
"permissions": [
"tabs", "storage", "clipboardRead", "clipboardWrite", "contextMenus", "notifications"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/frontend/scripts/inject.js"]
}
],
"options_page": "html/index.html#/settings",
"minimum_chrome_version": "34.0"
}