CSP Unblock

CSP Unblock

No more Content-Security-Policy limitations. This extension removes all CSP-related headers during website testing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.1.1",
  "name": "CSP Unblock",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "csp-1",
        "enabled": false,
        "path": "rulesets/csp-1.json"
      },
      {
        "id": "csp-2",
        "enabled": false,
        "path": "rulesets/csp-2.json"
      },
      {
        "id": "csp-3",
        "enabled": false,
        "path": "rulesets/csp-3.json"
      },
      {
        "id": "csp-4",
        "enabled": false,
        "path": "rulesets/csp-4.json"
      }
    ]
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png",
    "256": "data/icons/256.png",
    "512": "data/icons/512.png"
  },
  "homepage_url": "https://add0n.com/csp-unblock.html",
  "action": {},
  "background": {
    "service_worker": "worker.js"
  }
}