Disable Content-Security-Policy

Disable Content-Security-Policy

Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Disable Content-Security-Policy",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "version": "3.0.0",
  "author": "Phil Grayson",
  "homepage_url": "https://github.com/PhilGrayson/chrome-csp-disable",
  "manifest_version": 2,
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "browsingData",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Content-Security-Policy headers are enabled",
    "default_icon": {
      "16": "images/icon38-off.png"
    }
  },
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}