-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1.07 KB
/
manifest.json
File metadata and controls
53 lines (53 loc) · 1.07 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
{
"manifest_version": 2,
"name": "MetaPay - stellar web wallet",
"short_name": "MetaPay",
"description": "Stellar Lumen web wallet chrome extension",
"version": "0.8.1",
"author": "https://www.meta.re",
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "MacCtrl+Shift+M"
},
"description": "Opens MetaPay"
}
},
"icons": {
"16": "images/icon@16.png",
"48": "images/icon@48.png",
"128": "images/icon@128.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "index.html",
"default_title": "MetaPay"
},
"background": {
"scripts": [
"scripts/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"scripts/contentscript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"permissions": [
"notifications",
"activeTab",
"tabs",
"storage"
]
}