Examine source code of MailMaestro - Gmail AI assistant

Inspect and view changes in MailMaestro - Gmail AI assistant 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,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhTrszO26InfX8HvTKqlKuyloq+LbrmFcDl9fAeF/OkWiJLXKut8a4tLcDXz4EsbNnBFAjUXOGctz8mNs+b8YH7kfJVhbSTsYgGUQ+gHAqtRqb2F4WsBuSNTibIoT6L2rSKtNKRir3cIqDi2ELXFZ7W/Jqj3vutqbpsuxpfgwhnyCsfKlpwZTwFu6Q8L8ur8/L6uNP9c8gz/ow3VZCZ9JvWnehehR5YMgNAQoQ955cD/AkQffkqeQPxkMELEQwT2EfEaHeJ0yLPmPR5BvQzo5F8/PxagwelsUnIdGAia3f5jljQ4Of4qZUBU2iD63aqLJ5lhL4OoU1ebQ0sfgw0ryDwIDAQAB",
  "oauth2": {
    "client_id": "155298919810-4dvh3707c1llhkp4gogp87kdvt1ic5mf.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/gmail.readonly",
      "https://www.googleapis.com/auth/calendar.readonly",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "name": "MailMaestro - Gmail AI assistant",
  "version": "1.25.7",
  "background": {
    "service_worker": "service_worker.js"
  },
  "description": "Get to Inbox Zero in no time with AI. Write, reply, improve, and summarize email threads in seconds",
  "icons": {
    "16": "assets/icon-16.png",
    "32": "assets/icon-32.png",
    "128": "assets/icon-128.png"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "assets/contentscript.css"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "permissions": [
    "sidePanel",
    "activeTab",
    "tabs",
    "identity",
    "storage"
  ]
}