Close Microsoft Teams tabs

Automatically close Microsoft Teams tabs.

Cos'è Close Microsoft Teams tabs?

Close Microsoft Teams tabs è un'estensione di Chrome sviluppata da Fran Pérez, e la sua funzione principale è "Automatically close Microsoft Teams tabs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Close Microsoft Teams tabs

Scarica i file di estensione Close Microsoft Teams tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Close Microsoft Teams tabs Close Microsoft Teams tabs
ID dnelljaflobefffkdladbegdlhpmdopn
URL Ufficiale https://chromewebstore.google.com/detail/close-microsoft-teams-tab/dnelljaflobefffkdladbegdlhpmdopn
Descrizione Automatically close Microsoft Teams tabs.
Dimensione del File 20.78 KB
Conteggio Installazioni 1,126
Versione Corrente 0.0.2
Ultimo Aggiornamento 2021-12-22
Data di Pubblicazione 2021-12-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Fran Pérez
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://twitter.com/mrrocks
Lingue Supportate 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"
        }
    ]
}