Tabs count
Counts the number of open browser tabs
Hvad er Tabs count?
Tabs count er en Chrome-udvidelse udviklet af Kanban Labs, og dens hovedfunktion er "Counts the number of open browser tabs".
Udvidelsesskærmbilleder
Download Tabs count-udvidelses-CRX-fil
Download Tabs count-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | iaejhlgcnijhbdilicmoinmiofldhpke |
| Officiel URL | https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke |
| Beskrivelse | Counts the number of open browser tabs |
| Filstørrelse | 6.83 KB |
| Antal Installationer | 168 |
| Nuværende Version | 1.0.1 |
| Senest Opdateret | 2022-09-15 |
| Udgivelsesdato | 2022-09-14 |
| Bedømmelse | 3.75/5 Samlet 4 Bedømmelser |
| Udvikler | Kanban Labs |
| [email protected] | |
| Betalingsmetode | free |
| Hjælpeside-URL | https://kanban.ee |
| Understøttede Sprog | 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"
}
} | |