-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
49 lines (40 loc) · 1.07 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
{
"manifest_version": 2,
"name": "__MSG_ExtensionsName__",
"version": "0.8.10",
"description": "__MSG_ExtensionDescription__",
"icons": {
"16": "icons/image16.png",
"24": "icons/image24.png",
"32": "icons/image32.png",
"48": "icons/image48.png",
"64": "icons/image64.png",
"96": "icons/image96.png",
"128": "icons/image128.png",
"192": "icons/image192.png",
"256": "icons/image256.png",
"512": "icons/image512.png",
"1024": "icons/image1024.png"
},
"permissions": ["<all_urls>", "menus", "storage", "activeTab"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/commonfunctions.js", "lib/exif.js", "lib/imageproperties.js", "content.js"]
}
],
"background": {
"scripts": ["lib/commonfunctions.js", "lib/localize.js", "background.js"]
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "60.0"
}
}
}