- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / cross_origin_xhr / content_script / manifest.json
1 {
2   "name": "cross origin xhr tests",
3   "version": "0.1",
4   "manifest_version": 2,
5   "description": "Sanity check that cross-origin XHR works for extension content scripts.",
6   "background": {
7     "page": "test.html"
8   },
9   "content_scripts": [ {
10       "js": [ "content_script.js" ],
11       "matches": [ "http://localhost/*" ]
12   } ],
13   "permissions": ["http://a.com/", "http://*.b.com/"]
14 }