forked from MattyIce/steem-keychain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
31 lines (31 loc) · 960 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
{
"name": "Steem Keychain",
"version": "1.5.10",
"description": "Secure Steem Wallet Extension.",
"permissions": ["activeTab", "declarativeContent", "storage", "webNavigation","tabs", "https://*/*", "notifications", "idle"],
"browser_action": {
"default_popup": "html/popup.html",
"default_icon": "images/keychain_icon_small.png"
},
"background": {
"scripts": [
"vendor/crypto-js.js",
"vendor/md5.min.js",
"js/encrypt.js",
"vendor/steem.min.js",
"vendor/decode.min.js",
"js/config.js",
"js/keychainify.js",
"js/background.js"
],
"persistent": true
},
"web_accessible_resources": ["/images/logo.png", "js/steem_keychain.js"],
"content_scripts": [
{
"matches": ["https://*/*", "http://0.0.0.0:1337/*", "http://*/*"],
"js": ["vendor/jquery.min.js", "js/web_interface.js", "js/keychainify.js", "js/keychainify_content.js"]
}
],
"manifest_version": 2
}