- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / app_background_page / lacks_permission / manifest.json
1 {
2   "name": "app_background_page/lacks_permission",
3   "version": "0.1",
4   "manifest_version": 2,
5   "description": "Tests that an attempt to open a web-extent background page without permission results in a standard popup",
6   "background": {
7     "page": "test.html"
8   },
9   "permissions": ["tabs", "http://a.com/*"],
10   "content_scripts": [
11     {
12       "matches": ["http://a.com/*"],
13       "js": ["content_script.js"],
14       "run_at": "document_end"
15     }
16   ]
17 }