Close Microsoft Teams tabs

Automatically close Microsoft Teams tabs.

What is Close Microsoft Teams tabs?

Close Microsoft Teams tabs is a Chrome extension developed by Fran Pérez, and its main feature is "Automatically close Microsoft Teams tabs.".

Extension Screenshots

screenshot

Download Close Microsoft Teams tabs Extension CRX File

Download Close Microsoft Teams tabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension will automatically close all the tabs left open after clicking on a "join meeting" link from Outlook Web.

This extension was inspired by: "Close Figma Tab" by Manuel Muñoz Solera.                    

Extension Basic Information

Name Close Microsoft Teams tabs Close Microsoft Teams tabs
ID dnelljaflobefffkdladbegdlhpmdopn
Official URL https://chromewebstore.google.com/detail/close-microsoft-teams-tab/dnelljaflobefffkdladbegdlhpmdopn
Description Automatically close Microsoft Teams tabs.
File Size 20.78 KB
Installation Count 1,126
Current Version 0.0.2
Last Updated 2021-12-22
Publish Date 2021-12-22
Rating 5.00/5 Total 1 Ratings
Developer Fran Pérez
Email [email protected]
Payment Type free
Help Page URL https://twitter.com/mrrocks
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Microsoft Teams tabs",
    "version": "0.0.2",
    "manifest_version": 3,
    "description": "Automatically close Microsoft Teams tabs.",
    "icons": {
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/teams.microsoft.com\/dl\/launcher\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}