Tabs count

Counts the number of open browser tabs

Vad är Tabs count?

Tabs count är en Chrome-tillägg utvecklad av Kanban Labs, och dess huvudfunktion är "Counts the number of open browser tabs".

Tilläggsskärmbilder

screenshot

Ladda ner Tabs count-förlängningens CRX-fil

Ladda ner Tabs count-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Tabs count Tabs count
ID iaejhlgcnijhbdilicmoinmiofldhpke
Officiell webbadress https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke
Beskrivning Counts the number of open browser tabs
Filstorlek 6.83 KB
Antal Installationer 168
Aktuell Version 1.0.1
Senast Uppdaterad 2022-09-15
Publiceringsdatum 2022-09-14
Betyg 3.75/5 Totalt 4 Betyg
Utvecklare Kanban Labs
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://kanban.ee
Stödda Språk 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"
    }
}