Tab Number

Show tab number

What is Tab Number?

Tab Number is a Chrome extension developed by Eric Yang, and its main feature is "Show tab number".

Extension Screenshots

screenshot

Download Tab Number Extension CRX File

Download Tab Number 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

                        Display tab number so that you can switch them quickly with shortcut                    

Extension Basic Information

Name Tab Number Tab Number
ID hgncmdcajoembohielokebjhljfajddj
Official URL https://chromewebstore.google.com/detail/tab-number/hgncmdcajoembohielokebjhljfajddj
Description Show tab number
File Size 8.4 KB
Installation Count 270
Current Version 1.0.1
Last Updated 2017-08-29
Publish Date 2017-08-28
Rating 5.00/5 Total 5 Ratings
Developer Eric Yang
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Number",
    "description": "Show tab number",
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "tabNumber.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Show tab number"
    }
}