Tabs Counter

Count the number of tabs that are open

What is Tabs Counter?

Tabs Counter is a Chrome extension developed by Bill Miller, and its main feature is "Count the number of tabs that are open".

Extension Screenshots

screenshot

Download Tabs Counter Extension CRX File

Download Tabs Counter 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

                        If your curious as to how many browser tabs are open, just select "How many tabs?" from the context menu and all will be revealed                    

Extension Basic Information

Name Tabs Counter Tabs Counter
ID kgdaeidiojbdgmnjnpmklilaodjlkbjp
Official URL https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp
Description Count the number of tabs that are open
File Size 43.49 KB
Installation Count 7,000
Current Version 0.1
Last Updated 2014-07-09
Publish Date 2014-07-09
Rating 1.50/5 Total 8 Ratings
Developer Bill Miller
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs Counter",
    "description": "Count the number of tabs that are open",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "jquery.bpopup.min.js",
                "script.js"
            ]
        }
    ]
}