-
Notifications
You must be signed in to change notification settings - Fork 47
/
manifest.json
78 lines (78 loc) · 2.14 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "__MSG_keychain__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "1.7.6",
"permissions": [
"activeTab",
"declarativeContent",
"storage",
"webNavigation",
"tabs",
"https://*/*",
"notifications",
"idle",
"contextMenus"
],
"browser_action": {
"default_popup": "html/popup.html",
"default_icon": "images/keychain_icon_small.png"
},
"icons": {
"16": "images/keychain_icon_small.png",
"32": "images/keychain_icon_small.png"
},
"background": {
"scripts": [
"vendor/crypto-js.js",
"vendor/md5.min.js",
"js/libs/encrypt.js",
"vendor/steem.min.js",
"vendor/decode.min.js",
"vendor/jquery.min.js",
"js/config.js",
"js/libs/keychainify.js",
"js/libs/account.js",
"js/libs/accountsList.js",
"js/libs/hf21.js",
"js/libs/rpcs.js",
"js/background/autolock.js",
"js/background/init.js",
"js/background/dialog_lifecycle.js",
"js/background/errors.js",
"js/background/keychainify.js",
"js/background/auth.js",
"js/background/ops/authority.js",
"js/background/ops/broadcast.js",
"js/background/ops/signTx.js",
"js/background/ops/createAccount.js",
"js/background/ops/customJson.js",
"js/background/ops/decode.js",
"js/background/ops/delegation.js",
"js/background/ops/post.js",
"js/background/ops/power.js",
"js/background/ops/proposals.js",
"js/background/ops/signBuffer.js",
"js/background/ops/signedCall.js",
"js/background/ops/tokens.js",
"js/background/ops/transfer.js",
"js/background/ops/vote.js",
"js/background/ops/witness.js",
"js/background/transactions.js",
"js/background/context_menu.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/libs/keychainify.js", "js/keychainify_content.js"]
}
],
"manifest_version": 2
}