Tabs auto close

The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…

Cos'è Tabs auto close?

Tabs auto close è un'estensione di Chrome sviluppata da smeleshkin, e la sua funzione principale è "The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Tabs auto close

Scarica i file di estensione Tabs auto close 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

                        The extension closes tabs matching regular expressions automatically after a timeout.
Such as:
https://yandex.zoom.us/j/*
https://t.me/joinchat/*

And others at your discretion

Example regular expression for close zoom:
https:\/\/(.)*\.zoom.us\/j\/(.)*                    

Informazioni di Base sull'Estensione

Nome Tabs auto close Tabs auto close
ID mbodbfopnnihkmkhcojmieknngpcalhf
URL Ufficiale https://chromewebstore.google.com/detail/tabs-auto-close/mbodbfopnnihkmkhcojmieknngpcalhf
Descrizione The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…
Dimensione del File 87.88 KB
Conteggio Installazioni 865
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-10-31
Data di Pubblicazione 2022-10-31
Valutazione 4.80/5 Totale 5 Valutazioni
Sviluppatore smeleshkin
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/smeleshkin/tabs-auto-closer
URL della Pagina di Aiuto https://t.me/smeleshkin
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tabs auto close",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/broom16.png",
        "48": "icons\/broom48.png",
        "128": "icons\/broom128.png"
    }
}