- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / content_scripts / dont_match_host_permissions / manifest.json
1 {
2   "name": "content script don't match host permissions",
3   "version": "1.0",
4   "manifest_version": 2,
5   "description": "Tests that content scripts don't match host permissions.",
6   "background": {
7     "scripts": ["background.js"]
8   },
9   "permissions": [
10     "tabs",
11     "http://b.com/*"
12   ],
13   "content_scripts": [
14     {
15       "matches": ["http://a.com/*"],
16       "js": ["modify.js"],
17       "run_at": "document_end"
18     },
19     {
20       "matches": ["<all_urls>"],
21       "js": ["test.js"],
22       "run_at": "document_end"
23     }
24   ]
25 }