Examine source code of Disable-CSP

Inspect and view changes in Disable-CSP source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Disable-CSP",
  "version": "1.0.3",
  "author": "lisonge",
  "homepage_url": "https://github.com/lisonge/Disable-CSP",
  "description": "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy",
  "icons": {
    "128": "src/assets/icon-128.png"
  },
  "permissions": [
    "declarativeNetRequest",
    "debugger",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "128": "src/assets/icon-128.png"
    }
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "devtools_page": "html/devtools.html",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}