-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
51 lines (51 loc) · 1.23 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
{
"manifest_version": 2,
"name": "bookay",
"short_name": "bookay",
"version": "1.0.1",
"description": "bookay browser plugin",
"homepage_url": "https://github.com/jaynetics/bookay",
"background": {
"page": "background/background.html",
"persistent": true
},
"browser_action": {
"default_icon": {
"16": "assets/icon-16.png",
"19": "assets/icon-19.png",
"32": "assets/icon-32.png",
"38": "assets/icon-38.png",
"48": "assets/icon-48.png",
"64": "assets/icon-64.png"
},
"default_popup": "popup/popup.html",
"default_title": "bookay"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"windows": "Ctrl+Shift+E",
"mac": "Command+Shift+E",
"chromeos": "Ctrl+Shift+E",
"linux": "Ctrl+Shift+E"
}
}
},
"options_ui": {
"open_in_tab": true,
"page": "options/options.html"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"storage",
"tabs"
],
"icons": {
"128": "assets/icon-128.png",
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"96": "assets/icon-96.png"
}
}