Examine source code of GmailProtect: Protect your Gmail privacy.

Inspect and view changes in GmailProtect: Protect your Gmail privacy. 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": "GmailProtect: Protect your Gmail privacy.",
  "description": "The ultimate Gmail privacy guardian",
  "version": "1.0.31",
  "author": "gmailProtect.com",
  "homepage_url": "https://www.gmailProtect.com",
  "short_name": "The ultimate Gmail privacy guardian",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_title": "GmailProtect"
  },
  "icons": {
    "16": "icon_gmailProtect.png",
    "48": "icon_gmailProtect.png",
    "128": "icon_gmailProtect.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.min.js",
        "src/pages/content/index.js",
        "webcomponents-bundle.js"
      ],
      "css": [
        "assets/css/Style.chunk.css",
        "style.css"
      ]
    }
  ],
  "permissions": [
    "notifications",
    "declarativeNetRequest",
    "scripting"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_schedule_post",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "optional_permissions": [],
  "host_permissions": [
    "*://mail.google.com/",
    "*://app.gmailprotect.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*",
        "assets/css/*",
        "icon_gmailProtect.png",
        "icon_gmailProtect_free.png",
        "webcomponents-bundle.js",
        "pageWorld.js",
        "pageWorld.js.map"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "default_locale": "en"
}