Tabs count

Counts the number of open browser tabs

Co to jest Tabs count?

Tabs count to rozszerzenie Chrome opracowane przez Kanban Labs, a jego główną funkcją jest „Counts the number of open browser tabs”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Tabs count

Pobierz pliki rozszerzeń Tabs count 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

                        A very simple extension that gives you the number of currently opened tabs and windows.
Check the source code yourself! https://github.com/kanban-labs/tabs-count                    

Podstawowe informacje o rozszerzeniu

Nazwa Tabs count Tabs count
ID iaejhlgcnijhbdilicmoinmiofldhpke
Oficjalny URL https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke
Opis Counts the number of open browser tabs
Rozmiar pliku 6.83 KB
Liczba instalacji 168
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2022-09-15
Data Publikacji 2022-09-14
Ocena 3.75/5 Łącznie 4 Oceny
Deweloper Kanban Labs
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://kanban.ee
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs count",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Counts the number of open browser tabs",
    "action": {
        "default_title": "Tab count",
        "default_icon": "icons\/icon-48x48.png"
    },
    "permissions": [
        "notifications"
    ],
    "icons": {
        "48": "icons\/icon-48x48.png",
        "144": "icons\/icon-144x144.png"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self';"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}