-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
45 lines (45 loc) · 1 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
{
"manifest_version": 2,
"name": "WhatsApp in Sidebar",
"version": "2.1.2",
"description": "Displays WhatsApp in the Sidebar",
"background": {
"scripts": ["src/background.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "{2b38cb05-9cff-44a7-b9f1-7cc575afab8a}",
"strict_min_version": "100.0"
}
},
"options_ui": {
"page": "src/options/options.html",
"browser_style": true
},
"sidebar_action": {
"default_icon": {
"48": "src/icons/48x48.png",
"96": "src/icons/96x96.png"
},
"default_title": "WhatsApp",
"default_panel": "src/sidebar/panel.html"
},
"icons": {
"48": "src/icons/48x48.png",
"96": "src/icons/96x96.png"
},
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Alt+Shift+W"
},
"description": "Toggle WhatsApp in the sidebar."
}
},
"browser_action": {
"default_icon": {
"16": "src/icons/16x16.png",
"32": "src/icons/32x32.png"
}
}
}