Close Microsoft Teams tabs

Automatically close Microsoft Teams tabs.

Apa itu Close Microsoft Teams tabs?

Close Microsoft Teams tabs adalah ekstensi Chrome yang dikembangkan oleh Fran Pérez, dan fitur utamanya adalah "Automatically close Microsoft Teams tabs.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Close Microsoft Teams tabs

Unduh file ekstensi Close Microsoft Teams tabs dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Close Microsoft Teams tabs Close Microsoft Teams tabs
ID dnelljaflobefffkdladbegdlhpmdopn
URL Resmi https://chromewebstore.google.com/detail/close-microsoft-teams-tab/dnelljaflobefffkdladbegdlhpmdopn
Deskripsi Automatically close Microsoft Teams tabs.
Ukuran File 20.78 KB
Jumlah Instalasi 1,126
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2021-12-22
Tanggal Publikasi 2021-12-22
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Fran Pérez
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://twitter.com/mrrocks
Bahasa yang Didukung 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"
        }
    ]
}