-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
36 lines (36 loc) · 813 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
{
"manifest_version": 2,
"name": "Outlook/Teams Appointments",
"description": "Get the hidden appointment from an email from outlook/teams as a .ics-file - Icon: https://fontawesome.com/",
"version": "1.2",
"author": "Leworoe - Leon Wolfgang Rönnpagel",
"applications": {
"gecko": {
"id": "leworoe@gmail.com",
"strict_min_version": "78.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"message_display_action": {
"default_title": "Get Appointment",
"theme_icons": [
{
"light": "images/calendar_white.png",
"dark": "images/calendar_black.png",
"size": 64
}
]
},
"permissions": [
"messagesRead",
"downloads",
"notifications"
],
"icons": {
"64": "images/calendar_black.png"
}
}