Unread count for Outlook

Unread count for Outlook

A Chrome plugin to display Outlook unread messages count on the tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Unread count for Outlook",
  "manifest_version": 2,
  "version": "2.1",
  "description": "A Chrome plugin to display Outlook unread messages count on the tab.",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/owa/*",
        "https://*.outlook.com/*",
        "https://outlook.live.com/*",
        "https://*.office.com/*",
        "https://*/mail/inbox*"
      ],
      "js": [
        "favico-0.3.10.min.js",
        "unread-count-for-outlook.js"
      ]
    }
  ],
  "permissions": [
    "https://*/owa/*",
    "https://*.outlook.com/*",
    "https://outlook.live.com/*",
    "https://*.office.com/*",
    "https://*/mail/inbox*"
  ]
}