Tabs count
Counts the number of open browser tabs
Cos'è Tabs count?
Tabs count è un'estensione di Chrome sviluppata da Kanban Labs, e la sua funzione principale è "Counts the number of open browser tabs".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tabs count
Scarica i file di estensione Tabs count 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 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 Informazioni di Base sull'Estensione
| Nome | |
| ID | iaejhlgcnijhbdilicmoinmiofldhpke |
| URL Ufficiale | https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke |
| Descrizione | Counts the number of open browser tabs |
| Dimensione del File | 6.83 KB |
| Conteggio Installazioni | 168 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2022-09-15 |
| Data di Pubblicazione | 2022-09-14 |
| Valutazione | 3.75/5 Totale 4 Valutazioni |
| Sviluppatore | Kanban Labs |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina di Aiuto | https://kanban.ee |
| Lingue Supportate | 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"
}
} | |