-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 975 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
{
"name": "Outlook Web App Notification",
"manifest_version": 2,
"version": "1.0",
"description": "Show notification when new email arrives.",
"options_ui": {
"page": "src/options.html",
"chrome_style": true
},
"content_scripts": [
{
"run_at": "document_end",
"js": [
"src/js/background.js"
],
"matches": [
"http://xxx.example.tld/*",
"https://xxx.example.tld/*"
]
}
],
"icons": {
"16": "src/gfx/icon_16x16.png",
"48": "src/gfx/icon_48x48.png",
"128": "src/gfx/icon_128x128.png",
"512": "src/gfx/icon_512x512.png"
},
"permissions": [
"storage",
"notifications",
"http://xxx.example.tld/*",
"https://xxx.example.tld/*"
],
"applications": {
"gecko": {
"id": "ondrej.mladek@actum.cz"
}
}
}