Microsoft Teams: Always Available

Microsoft Teams: Always Available

A Chrome extension that keeps you available on teams 24/7

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Microsoft Teams: Always Available",
  "version": "2.0.0",
  "description": "A Chrome extension that keeps you available on teams 24/7",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "src/images/teamsIcon.png",
    "128": "src/images/teamsIcon.png"
  },
  "action": {
    "default_popup": "src/html/settings.html"
  },
  "permissions": [
    "storage",
    "alarms",
    "tabs",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.teams.microsoft.com/*",
    "https://*.teams.microsoft.com.mcas.ms/*"
  ]
}