CSP Content Security Policy Generator

CSP Content Security Policy Generator

Best Content-Security-Policy generator to automatically create Strict CSP policies (with SHA support) for any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "CSP Content Security Policy Generator",
  "version": "1.9.0",
  "description": "Best Content-Security-Policy generator to automatically create Strict CSP policies (with SHA support) for any website.",
  "browser_action": {
    "default_icon": "./assets/icon-512.png",
    "default_popup": "./dist/popup/index.html"
  },
  "background": {
    "page": "./dist/background/index.html",
    "persistent": true
  },
  "icons": {
    "16": "./assets/icon-16.png",
    "48": "./assets/icon-48.png",
    "128": "./assets/icon-128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "alarms",
    "tabs",
    "activeTab",
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./dist/contentScripts/index.global.js"
      ],
      "run_at": "document_start"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}