Examine source code of Email Whisperer - GPT AI Email Writer

Inspect and view changes in Email Whisperer - GPT AI Email Writer 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",
  "name": "Email Whisperer - GPT AI Email Writer",
  "version": "1.5",
  "description": "Email Whisperer - Write emails with ai",
  "manifest_version": 3,
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "http://*/",
    "http://localhost/",
    "https://*/",
    "*://*.google.com/"
  ],
  "action": {
    "default_title": "Email whisperer",
    "default_popup": "index.html"
  },
  "icons": {
    "128": "assets/images/whisperer-logo-bg-copy.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.live.com/*"
      ],
      "js": [
        "start.js"
      ],
      "css": [
        "./assets/css/whispererInject.css",
        "./assets/css/whispererIcons.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "assets/images/*"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.live.com/*"
      ],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; script-src-elem * 'self' 'unsafe-inline'; object-src 'self';"
  }
}