- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / content_scripts / isolated_world1 / manifest.json
1 {
2   "name": "isolated world 1",
3   "version": "0.1",
4   "manifest_version": 2,
5   "description": "tests that all scripts from an extension run in the same isolated world",
6   "background": {
7     "scripts": ["background.js"]
8   },
9   "permissions": ["http://*/*", "tabs"],
10   "content_scripts": [
11     {
12       "matches": ["http://*/*"],
13       "js": ["a.js"]
14     },
15     {
16       "matches": ["http://*/*"],
17       "js": ["b.js"]
18     }
19   ]
20 }