Redirect Tab Closer

Redirect Tab Closer

This extension automatically closes the launched window for Bluejeans/Zoom/WebEx meetings + Slack URLs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Redirect Tab Closer",
  "description": "This extension automatically closes the launched window for Bluejeans/Zoom/WebEx meetings + Slack URLs.",
  "version": "0.4",
  "icons": {
    "16": "assets/icon-16.png",
    "32": "assets/icon-32.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://zoom.us/postattendee",
        "https://zoom.us/j/*",
        "https://*.zoom.us/j/*",
        "https://zoom.us/s/*",
        "https://*.zoom.us/s/*",
        "https://bluejeans.com/*",
        "https://*.slack.com/archives/*",
        "https://*.webex.com/webappng/sites/*/meeting/info/*",
        "https://*.webex.com/wbxmjs/joinservice/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}