Tabs Counter

A simple extension for displaying the tab number next to the its title.

Co to jest Tabs Counter?

Tabs Counter to rozszerzenie Chrome opracowane przez poctek5, a jego główną funkcją jest „A simple extension for displaying the tab number next to the its title.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Tabs Counter

Pobierz pliki rozszerzeń Tabs Counter 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 simple extension for displaying the tab number next to the its title.                    

Podstawowe informacje o rozszerzeniu

Nazwa Tabs Counter Tabs Counter
ID fkgbbcpdghmahjidddepeighkcdlihmp
Oficjalny URL https://chromewebstore.google.com/detail/tabs-counter/fkgbbcpdghmahjidddepeighkcdlihmp
Opis A simple extension for displaying the tab number next to the its title.
Rozmiar pliku 3.79 KB
Liczba instalacji 60
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2016-10-19
Data Publikacji 2016-10-18
Ocena 3.40/5 Łącznie 5 Oceny
Deweloper poctek5
Typ Płatności free
Strona Rozszerzenia https://github.com/poctek/tabs-counter
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tabs Counter",
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "file:\/\/*\/"
    ],
    "version": "0.4",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}