-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (37 loc) · 1.08 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
{
"manifest_version": 2,
"name": "Outlook Web UXtras",
"version": "0.0.1",
"description": "This extension improves some specific UX for the Outlook web client.",
"icons": {
"16": "./outlook_chrome_extension_16.png",
"48": "./outlook_chrome_extension_48.png",
"128": "./outlook_chrome_extension_128.png"
},
"homepage_url": "https://github.com/wfernandes/outlook-chrome-extension",
"browser_action": {
"default_icon": "./outlook_chrome_extension_16.png"
},
"permissions": [
"storage",
"https://outlook.office.com/mail/*",
"https://outlook.office.com/calendar/deeplink/*"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://outlook.office.com/mail/*"
],
"js": ["content_outlook_mail.js"]
},
{
"run_at": "document_end",
"matches": [
"https://outlook.office.com/calendar/deeplink/*"
],
"js": ["content_outlook_calendar.js"]
}
],
"options_page": "options.html"
}