Dynamics 365 Integration for Gmail

Dynamics 365 Integration for Gmail

Track emails, sync calendars, work with activities, convert important emails into Dynamics 365 activities without leaving Gmail…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dynamics 365 Integration for Gmail",
  "short_name": "Dynamics 365 Integration for Gmail",
  "version": "10.1.14",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqh7AvOVccOV1rUIFPKRSS6mka8w4LUvdMcJEaViR6IFTKFUpqg3cn+wKqrWdj1PC6r8OhZaWHfhcIFV1dBNf6EbbUkhkCb4iB2Mcg8KMc9jk71LGTuwFgpRx3KddPJUJyLS3GK8DAO1NnxjSCGm5WC86uKCDwoChf4VlCqj2A1GsQ9aNH3bWFSYzJkCrV9zUgXEpeA91lsVsSPnWHky1+2NxX9deRKv1tNbk5l+y3ruErlwCOu7tBKaFizNXVe1hPLnsM91xS0HTYD1GZaZHhiLNOeVWx5oTEGuw/6uXlwkwzLPbnmTLOf7jZJKPdKd9RqOxwpDNNM/EW89pUlm0xQIDAQAB",
  "manifest_version": 3,
  "content_scripts": [
    {
      "js": [
        "cgiintegration.js"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://www.linkedin.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "permissions": [
    "storage",
    "identity",
    "tabs",
    "unlimitedStorage",
    "alarms"
  ],
  "host_permissions": [
    "https://www.googleapis.com/",
    "https://accounts.google.com/o/oauth2/auth",
    "https://accounts.google.com/o/oauth2/token",
    "https://cgiprod.akvelon.net/",
    "https://login.microsoftonline.com/",
    "https://login.microsoftonline.com/*",
    "https://*.dynamics.com/",
    "http://www.linkedin.com/*",
    "https://www.linkedin.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "CRMActivityEntities.json"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://www.linkedin.com/*"
      ],
      "extension_ids": []
    }
  ],
  "oauth2": {
    "client_id": "384137573546-ionidje26a4d56hm5inqfulim2j178uf.apps.googleusercontent.com",
    "client_secret": "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",
    "scopes": [
      "openid",
      "email",
      "profile",
      "https://www.googleapis.com/auth/gmail.compose",
      "https://www.googleapis.com/auth/gmail.readonly",
      "https://www.googleapis.com/auth/contacts",
      "https://www.googleapis.com/auth/calendar.events",
      "https://www.googleapis.com/auth/calendar.settings.readonly",
      "https://www.googleapis.com/auth/calendar.readonly"
    ]
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "img/icons/logo16x16.png",
    "24": "img/icons/logo24x24.png",
    "48": "img/icons/logo48x48.png",
    "128": "img/icons/logo128x128.png"
  }
}