-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
49 lines (48 loc) · 1.12 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"icons": {
"16": "icon_16.png",
"32": "icon_32.png",
"64": "icon_64.png"
},
"author": "quassy",
"homepage_url": "https://quassy.github.io/pwdhash/",
"version": "2.4.0",
"permissions": ["tabs", "activeTab"],
"default_locale": "en",
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icon_16.png",
"32": "icon_32.png",
"64": "icon_64.png"
},
"default_title" : "__MSG_actionPopup__",
"default_popup": "index.html"
},
"sidebar_action": {
"default_icon": {
"16": "icon_16.png",
"32": "icon_32.png",
"64": "icon_64.png"
},
"default_title" : "__MSG_actionSidebar__",
"default_panel": "index.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "F8"
},
"description": "__MSG_shortcutPopup__"
},
"_execute_sidebar_action": {
"suggested_key": {
"default": "Ctrl+F8"
},
"description": "__MSG__shortcutSidebar__"
}
}
}