- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / extensions / email_this_page / manifest.json
1 {
2   "name": "Email this page (by Google)",
3   "description": "This extension adds an email button to the toolbar which allows you to email the page link using your default mail client or Gmail.",
4   "version": "1.2.6",
5   "background": {
6     "scripts": ["background.js"],
7     "persistent": false
8   },
9   "icons": { "128": "mail_128x128.png" },
10   "options_page": "options.html",
11   "permissions": [
12     "tabs", "http://*/*", "https://*/*"
13   ],
14   "browser_action": {
15     "default_title": "Email this page",
16     "default_icon": "email_16x16.png"
17   },
18
19   "manifest_version": 2
20 }