Teams and BlueJeans Closer

Teams and BlueJeans Closer

This extension automatically closes the launcher window for Teams and BlueJeans after 5 seconds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Teams and BlueJeans Closer",
  "description": "This extension automatically closes the launcher window for Teams and BlueJeans after 5 seconds.",
  "version": "3.0",
  "icons": {
    "16": "assets/icon-16.png",
    "32": "assets/icon-32.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://teams.microsoft.com/dl/launcher/launcher.html*",
        "https://teams.live.com/dl/launcher/launcher.html*",
        "https://bluejeans.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}