MailMaestro - Email Copilot

MailMaestro - Email Copilot

MailMaestro: AI email assistant for Gmail, speeding up mail management. Try for free today!

Merlin
Additional files are visible only to premium users

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 - Email Copilot",
  "version": "1.7.2",
  "background": {
    "service_worker": "service_worker.js"
  },
  "description": "MailMaestro: AI email assistant for Gmail, speeding up mail management. Try for free today!",
  "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"
  ]
}