Badge Notifications for MS Teams PWA

Badge Notifications for MS Teams PWA

A tool to add a pending notification app badge (tested on Chrome OS)

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Badge Notifications for MS Teams PWA",
  "version": "2.6",
  "description": "A tool to add a pending notification app badge (tested on Chrome OS)",
  "content_scripts": [
    {
      "matches": [
        "https://*.teams.microsoft.com/*",
        "https://*.teams.microsoft.com.mcas.ms/*",
        "https://*.teams.microsoft.us.mcas-gov.us/*",
        "https://*.teams.microsoft.us/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "images/teamsIcon.png",
    "128": "images/teamsIcon.png"
  }
}