- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / content_scripts / extension_iframe / manifest.json
1 {
2   "name": "content_script_extension_iframe",
3   "version": "1.0",
4   "manifest_version": 2,
5   "description": "Tests that a chrome-extension iframe gets messaging privileges",
6   "background": {
7     "page": "test.html"
8   },
9   "permissions": ["tabs"],
10   "content_scripts": [
11     {
12       "matches": ["http://*/*"],
13       "js": ["script.js"]
14     }
15   ],
16   "web_accessible_resources": [
17     "iframe.html",
18     "iframe.js"
19   ]
20 }