- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / content_scripts / other_extensions / injector / manifest.json
1 {
2   "name": "content_script_extension_injector",
3   "version": "1.0",
4   "manifest_version": 2,
5   "description": "Tests extension that tried to inject content script in other extensions.",
6   "background": { "scripts": ["background.js"] },
7   "permissions": [ "*://*/*" ],
8   "content_scripts": [
9     {
10       "all_frames": true,
11       "run_at": "document_end",
12       "matches": ["http://a.com/*"],
13       "js": ["inject.js"]
14     }
15   ]
16 }