Tumber - Tab Numbers for Google Chrome™

Show tab numbers in Google Chrome™ for tab jumping ninja!

What is Tumber - Tab Numbers for Google Chrome™?

Tumber - Tab Numbers for Google Chrome™ is a Chrome extension developed by jonpatterson, and its main feature is "Show tab numbers in Google Chrome™ for tab jumping ninja!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Tumber - Tab Numbers for Google Chrome™ Extension CRX File

Download Tumber - Tab Numbers for Google Chrome™ 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

                        Google Chrome allows fast switching between tabs using keyboard shortcuts.  With several tabs open this can take a bit of guess work.

Tumber shows a number in each open tab so you never jump to the wrong tab again!

✅ Features
  - Toggle tab numbers in current window
  - Toggle tab numbers in all windows
  - Self destruct! Tab numbers disappear after a few seconds

❓ How to
  - Right click in browser tab and select 'Toggle Current' or 'Toggle All' from the Tumber menu
  - Keyboard shortcut Ctrl+Space to toggle in current tab
  - Keyboard shortcut Ctrl+Shift+Space to toggle in all tabs
  - Jump between tabs in Windows/Linux using Ctrl+1 to Ctrl+8
  - Jump between tabs in macOS using Cmd+1 to Cmd+8

📝 Notes
  - Tab numbers cannot be shown on Chrome tabs such as the New Tab Page or Settings
  - Tabs are only numbered up to 8 as there are only shortcuts for the first 8 tabs
  - Websites that show status updates in the tab title may overwrite the tab number
  - Contribute to this project on GitHub - https://github.com/jonpatterson/tumber


  Google Chrome is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

Extension Basic Information

Name Tumber - Tab Numbers for Google Chrome™ Tumber - Tab Numbers for Google Chrome™
ID ikjojkniefmpkobmoilpeiiaofcajlgo
Official URL https://chromewebstore.google.com/detail/tumber-tab-numbers-for-go/ikjojkniefmpkobmoilpeiiaofcajlgo
Description Show tab numbers in Google Chrome™ for tab jumping ninja!
File Size 13.08 KB
Installation Count 66
Current Version 1.2.0
Last Updated 2020-06-15
Publish Date 2020-06-15
Developer jonpatterson
Payment Type free
Extension Website https://github.com/jonpatterson/tumber
Help Page URL https://github.com/jonpatterson/tumber/issues
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tumber - Tab Numbers for Google Chrome\u2122",
    "short_name": "Tumber",
    "description": "Show tab numbers in Google Chrome\u2122 for tab jumping ninja!",
    "version": "1.2.0",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        ""
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "main.js"
        ]
    },
    "commands": {
        "toggle_current_window": {
            "suggested_key": {
                "default": "Ctrl+Space",
                "windows": "Ctrl+Space",
                "mac": "MacCtrl+Space"
            },
            "description": "Toggle current window"
        },
        "toggle_all_windows": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "windows": "Ctrl+Shift+Space",
                "mac": "MacCtrl+Shift+Space"
            },
            "description": "Toggle all windows"
        }
    }
}