Tabs Counter
Count the number of tabs that are open
Cos'è Tabs Counter?
Tabs Counter è un'estensione di Chrome sviluppata da Bill Miller, e la sua funzione principale è "Count the number of tabs that are open".
Screenshot dell'Estensione
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
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
Informazioni di Base sull'Estensione
Nome | |
ID | kgdaeidiojbdgmnjnpmklilaodjlkbjp |
URL Ufficiale | https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp |
Descrizione | Count the number of tabs that are open |
Dimensione del File | 43.49 KB |
Conteggio Installazioni | 7,000 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2014-07-09 |
Data di Pubblicazione | 2014-07-09 |
Valutazione | 1.50/5 Totale 8 Valutazioni |
Sviluppatore | Bill Miller |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |