Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / content_scripts / extension_iframe / manifest.json
blob25ce35b332b8d89ac58830b3ea506f7b5a11505f
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", "bookmarks", "storage"],
10   "content_scripts": [
11     {
12       "matches": ["http://*/*"],
13       "js": ["script.js"]
14     }
15   ],
16   "web_accessible_resources": [
17     "iframe.html",
18     "iframe.js"
19   ]