forked from Aminadav/webpage-screenshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (39 loc) · 1.04 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
{
"name": "__MSG_name__",
"version": "29.0.0",
"commands": {
"visible_screenshot": {
"description": "visible screenshot"
},
"entire_page_screenshot": {
"description": "Entire Page Screenshot"
}
},
"homepage_url": "https://www.openscreenshot.com",
"manifest_version": 2,
"description": "__MSG_description__",
"icons": {
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "images/browseraction.png",
"default_title": "Screenshot Extension",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"/images/*.png",
"/css/pagestyles.css",
"/css/dialog.css",
"/libs/gapi.js",
"/libs/jquery.js",
"/js/dialog.js"
],
"offline_enabled":true,
"default_locale": "en",
"permissions": ["activeTab"],
"optional_permissions": ["desktopCapture" ]
}