Tabs Counter

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

Cos'è Tabs Counter?

Tabs Counter è un'estensione di Chrome sviluppata da poctek5, e la sua funzione principale è "A simple extension for displaying the tab number next to the its title.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tabs Counter

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

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

Informazioni di Base sull'Estensione

Nome Tabs Counter Tabs Counter
ID fkgbbcpdghmahjidddepeighkcdlihmp
URL Ufficiale https://chromewebstore.google.com/detail/tabs-counter/fkgbbcpdghmahjidddepeighkcdlihmp
Descrizione A simple extension for displaying the tab number next to the its title.
Dimensione del File 3.79 KB
Conteggio Installazioni 60
Versione Corrente 0.4
Ultimo Aggiornamento 2016-10-19
Data di Pubblicazione 2016-10-18
Valutazione 3.40/5 Totale 5 Valutazioni
Sviluppatore poctek5
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/poctek/tabs-counter
Lingue Supportate 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"
        ]
    }
}