-
Notifications
You must be signed in to change notification settings - Fork 151
/
manifest.json
49 lines (43 loc) · 842 Bytes
/
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
{
"name": "CSSViewer",
"manifest_version": 2,
"version": "1.7",
"description": "A simple CSS property viewer.",
"icons": {
"16": "img/16.png",
"22": "img/22.png",
"24": "img/24.png",
"32": "img/32.png",
"48": "img/48.png"
},
"options_page": "option.html",
"background": { "page":"background.html" },
"browser_action": {
"default_icon": "img/16.png",
"default_title": "CSSViewer"
},
"web_accessible_resources": [
"img/header.png",
"img/body.png",
"img/list.png",
"img/footer.png",
"img/bullet.png"
],
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"file://*/*",
"contextMenus"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+S",
"mac": "Command+Shift+S",
"chromeos": "Ctrl+Shift+S",
"linux": "Ctrl+Shift+S"
}
}
}
}