-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
39 lines (39 loc) · 976 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": "NCC Image Checker",
"short_name": "Image Checker",
"description": "Provides image optimisation information within the browser.",
"version": "1.5.0",
"icons" : {
"16": "app/assets/icon.png",
"48": "app/assets/icon.png",
"128": "app/assets/icon.png"
},
"browser_action": {
"default_icon": "app/assets/icon.png",
"default_title": "NCC Image Checker",
"default_popup": "app/popup.html"
},
"options_ui": {
"page": "app/options.html",
"chrome_style": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"app/styles/content.css"
],
"js": [
"app/content.js",
"app/public.js"
],
"run_at": "document_idle"
}
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"permissions": ["activeTab", "tabs"],
"minimum_chrome_version": "54.0.2840"
}