-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
28 lines (28 loc) · 967 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
{
"background": {
"scripts": [ "background.js" ]
},
"browser_action": {
"default_icon": "images/gmail-extension-19.png",
"default_title": "Send this link via Gmail"
},
"content_scripts": [ {
"all_frames": true,
"js": [ "mailto.js" ],
"matches": [ "http://*/*", "https://*/*" ]
} ],
"description": "Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email",
"icons": {
"128": "images/gmail-extension-128.png",
"16": "images/gmail-extension-16.png",
"32": "images/gmail-extension-32.png",
"64": "images/gmail-extension-64.png"
},
"key": "TODO",
"manifest_version": 2,
"name": "Send via Gmail+",
"options_page": "options.html",
"permissions": [ "tabs", "http://*/*", "https://*/*", "http://*.google.com/" ],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.16"
}