Tabs auto close

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

Co to jest Tabs auto close?

Tabs auto close to rozszerzenie Chrome opracowane przez smeleshkin, a jego główną funkcją jest „The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Tabs auto close

Pobierz pliki rozszerzeń Tabs auto close w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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\/(.)*                    

Podstawowe informacje o rozszerzeniu

Nazwa Tabs auto close Tabs auto close
ID mbodbfopnnihkmkhcojmieknngpcalhf
Oficjalny URL https://chromewebstore.google.com/detail/tabs-auto-close/mbodbfopnnihkmkhcojmieknngpcalhf
Opis The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…
Rozmiar pliku 87.88 KB
Liczba instalacji 865
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2022-10-31
Data Publikacji 2022-10-31
Ocena 4.80/5 Łącznie 5 Oceny
Deweloper smeleshkin
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/smeleshkin/tabs-auto-closer
Adres URL Strony Pomocy https://t.me/smeleshkin
Obsługiwane Języki 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"
    }
}