-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
70 lines (67 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"manifest_version": 2,
"name": "Scroll Preview",
"version": "5.2",
"description": "Scroll Preview integrates a whole-page preview with scrollbar that inspired by Sublime Text's mini map.",
"icons": {
"16": "icons/monocle-16.png",
"48": "icons/monocle-48.png",
"128": "icons/monocle-128.png"
},
"browser_action": {
"default_icon": {
"19": "icons/monocle-19.png",
"38": "icons/monocle-38.png"
},
"default_title": "Scroll Preview"
},
"author": "Mike Chen",
"background": {
"scripts": [
"common/dev.js",
"common/user_settings.js",
"src/background.js"
],
"persistent": true
},
"commands": {
"basic-snapshot": {
"description": "Simple",
"suggested_key": {
"default": "Alt+A"
}
},
"refined-snapshot": {
"description": "Refined",
"suggested_key": {
"default": "Alt+Shift+A"
}
}
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"css": ["src/style.css"],
"js": [
"libs/jquery-shim.js",
"libs/html2canvas.js",
"common/dev.js",
"common/user_settings.js",
"src/content.js"
]
}
],
"options_page": "options/options.html",
"permissions": [
"tabs",
"activeTab",
"storage",
"*://*/*"
],
"web_accessible_resources": [
"libs/jquery-shim.js"
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}