-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
64 lines (52 loc) · 1.72 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "Yathit Email Tracker",
"short_name": "Email Tracker",
"description": "Easily track all your emails sent from Gmail",
"version": "3.4.6",
"manifest_version": 2,
"default_locale": "en",
"content_scripts": [
{
"matches": ["https://mail.google.com/*"],
"js": [
"js/environment.js",
"js/run-content-script.js"],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"js/environment.js",
"js/load-amptitude.js",
"js/run-event-page.js"],
"persistent": false
},
"web_accessible_resources": [
"setup.html",
"option-page.html",
"popup.html",
"host-permission.html",
"inj-template.html",
"jsc/*",
"image/*"],
"content_security_policy": "script-src 'self' https://ydn-src-1.storage.googleapis.com https://www.yathit.com https://ssl.google-analytics.com https://www.google.com/ https://d24n15hnbwhuhn.cloudfront.net; object-src 'self'; img-src 'self' https://ssl.gstatic.com https://ssl.google-analytics.com",
"permissions": ["storage", "activeTab", "gcm", "notifications", "declarativeContent", "https://mail.google.com/*"],
"externally_connectable": {
"matches": ["https://mail.google.com/*", "https://www.yathit.com/*", "https://*.mail.live.com/*"]
},
"optional_permissions": ["https://*.mail.live.com/*"],
"options_page": "option-page.html",
"page_action": {
"default_icon": {
"19": "image/logo-19.png",
"38": "image/logo-38.png"
},
"default_title": "Yathit email tracker require permission to access data."
},
"icons": {
"16": "image/logo-gmail-16.png",
"64": "image/logo-gmail-64.png",
"128": "image/logo-gmail-128.png"
},
"minimum_chrome_version": "38"
}