forked from jonroig/MailtOWA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (34 loc) · 911 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
{
"name": "MailtOWA: Mailto O365 Webmail / OutlookWebApp",
"version": "1.1",
"description": "Mailto links open Microsoft Office 365 Webmail / Outlook Web Application Compose by default",
"permissions": ["storage"],
"options_page": "popup.html",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [ {
"all_frames": true,
"js": [ "mailtowa.js" ],
"matches": [ "\u003Call_urls>" ],
"run_at": "document_end"
} ],
"browser_action": {
"default_popup": "popup.html",
"default_title": "MailtOWA",
"default_icon": {
"16": "images/mail16.png",
"32": "images/mail32.png",
"48": "images/mail48.png",
"128": "images/mail128.png"
}
},
"icons": {
"16": "images/mail16.png",
"32": "images/mail32.png",
"48": "images/mail48.png",
"128": "images/mail128.png"
},
"manifest_version": 2
}