Examine source code of ChatGPT for Gmail

Inspect and view changes in ChatGPT for Gmail 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,
  "version": "0.4",
  "name": "ChatGPT for Gmail",
  "short_name": "ChatGPT4Gmail",
  "description": "Leverage the power of ChatGPT within your Gmail inbox.",
  "icons": {
    "16": "images/Logo/logo16.png",
    "32": "images/Logo/logo32.png",
    "64": "images/Logo/logo64.png",
    "128": "images/Logo/logo128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/Logo/logo64.png",
    "default_title": "ChatGPT for Gmail"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "gmail.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://mail.google.com/",
    "https://core.salesgear.io/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ]
}