Tabs count

Counts the number of open browser tabs

What is Tabs count?

Tabs count is a Chrome extension developed by Kanban Labs, and its main feature is "Counts the number of open browser tabs".

Extension Screenshots

screenshot

Download Tabs count Extension CRX File

Download Tabs count extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Tabs count Tabs count
ID iaejhlgcnijhbdilicmoinmiofldhpke
Official URL https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke
Description Counts the number of open browser tabs
File Size 6.83 KB
Installation Count 168
Current Version 1.0.1
Last Updated 2022-09-15
Publish Date 2022-09-14
Rating 3.75/5 Total 4 Ratings
Developer Kanban Labs
Email [email protected]
Payment Type free
Help Page URL https://kanban.ee
Supported Languages 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"
    }
}