- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / debugger / live-headers / manifest.json
1 {
2   "name": "Live HTTP headers",
3   "description": "Displays the live log with the http requests headers",
4   "version": "0.7",
5   "permissions": [
6     "debugger"
7   ],
8   "background": {
9     "scripts": ["background.js"]
10   },
11   "browser_action": {
12     "default_icon": "icon.png",
13     "default_title": "Live HTTP headers"
14   },
15   "manifest_version": 2
16 }
17