forked from faisalamin9696/steem-keychain-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 889 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 889 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": "SteemKeychain",
"description": "Steem keychain",
"default_locale": "en",
"version": "3.0.3",
"permissions": ["storage", "idle", "alarms"],
"host_permissions": ["https://*/*"],
"action": {
"default_popup": "popup.html",
"default_icon": "/assets/images/iconsteem.png"
},
"icons": { "128": "/assets/images/iconsteem.png" },
"background": { "service_worker": "backgroundBundle.js", "type": "module" },
"web_accessible_resources": [
{
"resources": ["/images/logo.png", "steem_keychain.js", "_locales/*"],
"matches": ["https://*/*", "http://0.0.0.0:1337/*", "http://*/*"],
"extension_ids": []
}
],
"content_scripts": [
{
"matches": ["https://*/*", "http://0.0.0.0:1337/*", "http://*/*"],
"js": ["keychainifyBundle.js", "web_interfaceBundle.js"],
"all_frames": true
}
],
"manifest_version": 3
}