Examine source code of Privacy Protector

Inspect and view changes in Privacy Protector 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Privacy Protector",
  "version": "1.5.1",
  "description": "",
  "icons": {
    "16": "public/logo_low_16.png",
    "32": "public/logo_low_32.png",
    "48": "public/logo_low_48.png",
    "128": "public/logo_low_128.png"
  },
  "action": {
    "default_popup": "action/default_popup.html",
    "default_icon": {
      "16": "public/logo_low_16.png",
      "32": "public/logo_low_32.png",
      "48": "public/logo_low_48.png",
      "128": "public/logo_low_128.png"
    },
    "default_background": {
      "color": "#FF0000"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "web_accessible_resources/*",
        "/*.json",
        "/*.js",
        "/*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; "
  },
  "background": {
    "service_worker": "background/service_worker.js"
  }
}