- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / tabs / inspector / manifest.json
1 {
2   "name": "Tab Inspector",
3   "description": "Utility for working with the extension tabs api",
4   "version": "0.3",
5   "permissions": ["tabs"],
6   "background": {
7     "persistent": false,
8     "scripts": ["background.js"]
9   },
10   "browser_action": {
11     "default_title": "show tab inspector"
12   },
13   "manifest_version": 2
14 }