-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmanifest.json
39 lines (33 loc) · 864 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
{
"manifest_version": 2,
"name": "Blipshot: one click full page screenshots",
"short_name": "Blipshot",
"version": "1.2.4",
"description": "Real fast and simple one-click full-page screenshots with drag and drop.",
"author": "Erin Casali",
"browser_action": {
"default_icon": {
"19": "icon/toolbar-icon19.png",
"38": "icon/toolbar-icon38.png"
}
},
"icons": {
"16": "icon/icon16.png",
"32": "icon/icon32.png",
"48": "icon/icon48.png",
"128": "icon/icon128.png"
},
"background": {
"scripts": ["screenshotter.js", "actions.js"]
},
"content_scripts": [
{ "js": [ "screenshotter.DOM.js", "blanketStyleSet.js" ], "matches": [ "<all_urls>" ], "run_at": "document_end" }
],
"permissions": [
"tabs",
"<all_urls>"
],
"web_accessible_resources": [
"resources/overlay.html"
]
}