Notifications and More for Outlook Web App

Notifications and More for Outlook Web App

Display email count on the Outlook web app icon and adds some handy shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notifications and More for Outlook Web App",
  "description": "Display email count on the Outlook web app icon and adds some handy shortcuts",
  "version": "1.4",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://outlook.office.com/*"
      ],
      "js": [
        "jquery.1.11.1.min.js",
        "background.js"
      ]
    }
  ]
}