- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / content_scripts / bypass_page_csp / manifest.json
1 {
2   "name": "Bypass page's Content Security Policy",
3   "version": "0.1",
4   "manifest_version": 2,
5   "description": "Check that injected content scripts can inject resources, regardless of a page's CSP.",
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 }