chromium/chrome/test/data/extensions/api_test/content_scripts/bypass_page_csp/manifest.json

{
  "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"]
    }
  ]
}