Tabs count
Counts the number of open browser tabs
Was ist Tabs count?
Tabs count ist eine Chrome-Erweiterung, die von Kanban Labs entwickelt wurde, und ihr Hauptmerkmal ist "Counts the number of open browser tabs".
Erweiterungsscreenshots
Tabs count-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tabs count-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iaejhlgcnijhbdilicmoinmiofldhpke |
| Offizielle URL | https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke |
| Beschreibung | Counts the number of open browser tabs |
| Dateigröße | 6.83 KB |
| Installationsanzahl | 168 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2022-09-15 |
| Veröffentlichungsdatum | 2022-09-14 |
| Bewertung | 3.75/5 Insgesamt 4 Bewertungen |
| Entwickler | Kanban Labs |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://kanban.ee |
| Unterstützte Sprachen | 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"
}
} | |