-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 995 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
50
{
"manifest_version": 2,
"name": "View Image Info Reborn",
"description": "Display info for the current image in a new window, new tab, or overlaid on the image.",
"version": "2.1.1",
"applications":{
"gecko": {
"id": "[email protected]",
"strict_min_version": "63.0"
}
},
"developer": {
"name": "Jefferson \"jscher2000\" Scher",
"url": "https://github.com/jscher2000/"
},
"background": {
"scripts": [
"view-image-info-background.js",
"view-image-info-webrequest.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"view-image-info-content.css"
],
"js": [
"view-image-info-content.js",
"view-image-info-content-proximate.js"
]
}
],
"permissions": [
"<all_urls>",
"menus",
"storage",
"webRequest",
"webRequestBlocking"
],
"icons": {
"64": "img/view-image-info-64.png"
},
"options_ui": {
"page": "view-image-info-options.html",
"browser_style": true
}
}