{
"name": "Bypass page's Content Security Policy",
"version": "0.1",
"manifest_version": 2,
"description": "Check that injected content scripts can inject resources, regardless of a page's CSP.",
"background": {
"scripts": ["background.js"],
"persistent": true
},
"permissions": ["http://*/*", "tabs"],
"content_scripts": [
{
"matches": ["http://*/extensions/*test_file_with_csp.html"],
"js": ["a.js"]
}
]
}