forked from MattyIce/steem-keychain
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmanifest.json
More file actions
70 lines (70 loc) · 2 KB
/
manifest.json
File metadata and controls
70 lines (70 loc) · 2 KB
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
{
"name": "SteemKeychain",
"description": "Steem keychain",
"default_locale": "en",
"version": "1.0.35",
"permissions": ["storage"],
"browser_action": {
"default_popup": "html/popup.html",
"default_icon": "images/steemicon_200.png"
},
"icons": {
"16": "images/steemicon_16.png",
"32": "images/steemicon_32.png",
"48": "images/steemicon_48.png",
"128": "images/steemicon_128.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/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://*/*"],
"js": [
"vendor/jquery.min.js",
"js/web_interface.js",
"js/libs/keychainify.js",
"js/keychainify_content.js"
]
}
],
"manifest_version": 2
}