Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / content_scripts / extension_process / manifest.json
blob7dc1528fcf597a540a7d9f564a03faba73a5677f
2   "name": "content_script_extension_process",
3   "version": "1.0",
4   "manifest_version": 2,
5   "description": "Content scripts should get injected into web pages, even when the webpages are in an extension process.",
6   "background": {
7     "page": "background.html"
8   },
9   "content_scripts": [
10     {
11       "matches": ["http://*/*"],
12       "js": ["injectionator.js"],
13       "all_frames": true
14     }
15   ]