-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.11 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
{
"manifest_version": 2,
"name": "Image reader",
"version": "1.2.1",
"description": "Show all images from the webpage easly",
"author": "VZenix <info@vzenix.es>",
"permissions": [
"activeTab",
"contextMenus",
"storage"
],
"icons": {
"32": "icons/logo-32.png",
"48": "icons/logo-48.png",
"64": "icons/logo-64.png",
"128": "icons/logo-128.png",
"256": "icons/logo-256.png"
},
"browser_action": {
"default_icon": {
"32": "icons/logo-32.png",
"48": "icons/logo-48.png",
"64": "icons/logo-64.png",
"128": "icons/logo-128.png",
"256": "icons/logo-256.png"
}
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [{
"all_frames": false,
"match_about_blank": true,
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_idle",
"js": ["index.js"]
}],
"options_ui": {
"page": "config/home.html",
"open_in_tab": true
}
}