Email Comments Extension

Email Comments Extension

Email Comments enables your internal team to comment on specific emails within Gmail that only those included in the email can…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Email Comments Extension",
  "version": "1.31",
  "permissions": [
    "identity",
    "identity.email",
    "background",
    "notifications",
    "https://mail.google.com/",
    "https://inbox.google.com/",
    "https://www.googleapis.com/*",
    "https://*.googleusercontent.com/*",
    "https://*.emailcomments.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "js": [
        "js/inboxsdk.js",
        "js/myapp.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": {},
    "default_title": "Email Comments Extension"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "oauth2": {
    "client_id": "367937341408-po49thm20pu17mglke0np56m5cvfmogh.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/gmail.metadata",
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "web_accessible_resources": [
    "*.png"
  ]
}