- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / browserAction / print / manifest.json
1 {
2   "name": "Print this page",
3   "description": "Adds a print button to the browser.",
4   "version": "1.1",
5   "background": {
6     "scripts": ["background.js"]
7   },
8   "permissions": [
9     "tabs", "http://*/*", "https://*/*"
10   ],
11   "browser_action": {
12       "default_title": "Print this page",
13       "default_icon": "print_16x16.png"
14   },
15   "manifest_version": 2
16 }