- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / lazy_background_page / browser_action_with_callback / manifest.json
1 {
2   "name": "Extensions Button",
3   "description": "Access the Extensions window directly from the toolbar. Will not open a duplicate extensions tab.",
4   "version": "1.1",
5   "manifest_version": 2,
6   "permissions": ["tabs"],
7   "background": {
8     "scripts": ["background.js"],
9     "persistent": false
10   },
11   "browser_action": {
12     "default_icon" : "ext_icon.png",
13     "default_title": "Open Extensions window"
14   }
15 }