forked from leather-io/extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·58 lines (58 loc) · 1.37 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
{
"name": "<% NAME %>",
"author": "Hiro PBC",
"version": "<% VERSION %>",
"description": "Stacks Wallet. Use the Stacks blockchain to access privacy-friendly apps, and keep data in your control.",
"icons": {
"128": "assets/connect-logo/Stacks128w.png",
"256": "assets/connect-logo/Stacks256w.png",
"512": "assets/connect-logo/Stacks512w.png"
},
"content_security_policy": "script-src 'self'<% DEV_CSR %>; object-src <% DEV_OBJECT_SRC %>; frame-src 'none'; frame-ancestors 'none';",
"permissions": [
"activeTab"
],
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"web_accessible_resources": [
"inpage.js"
],
"browser_action": {
"default_title": "Stacks",
"default_icon": "assets/connect-logo/Stacks128w.png",
"default_popup": "extension.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+B",
"mac": "MacCtrl+Shift+B"
},
"description": "Opens Stacks App"
}
},
"options_ui": {
"page": "full-page.html",
"open_in_tab": true
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"matches": [
"*://*/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{e22ae397-03d7-4622-bd8f-ecaca8c9b277}"
}
}
}