Tabs Counter

Count the number of tabs that are open

Co to jest Tabs Counter?

Tabs Counter to rozszerzenie Chrome opracowane przez Bill Miller, a jego główną funkcją jest „Count the number of tabs that are open”.

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

                        If your curious as to how many browser tabs are open, just select "How many tabs?" from the context menu and all will be revealed                    

Podstawowe informacje o rozszerzeniu

Nazwa Tabs Counter Tabs Counter
ID kgdaeidiojbdgmnjnpmklilaodjlkbjp
Oficjalny URL https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp
Opis Count the number of tabs that are open
Rozmiar pliku 43.49 KB
Liczba instalacji 7,000
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2014-07-09
Data Publikacji 2014-07-09
Ocena 1.50/5 Łącznie 8 Oceny
Deweloper Bill Miller
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs Counter",
    "description": "Count the number of tabs that are open",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "jquery.bpopup.min.js",
                "script.js"
            ]
        }
    ]
}