Tumber - Tab Numbers for Google Chrome™

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

Co je Tumber - Tab Numbers for Google Chrome™?

Tumber - Tab Numbers for Google Chrome™ je rozšíření Chrome vyvinuté jonpatterson, a jeho hlavní funkcí je „Show tab numbers in Google Chrome™ for tab jumping ninja!“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Tumber - Tab Numbers for Google Chrome™

Stáhněte si soubory rozšíření Tumber - Tab Numbers for Google Chrome™ ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Tumber - Tab Numbers for Google Chrome™ Tumber - Tab Numbers for Google Chrome™
ID ikjojkniefmpkobmoilpeiiaofcajlgo
Oficiální URL https://chromewebstore.google.com/detail/tumber-tab-numbers-for-go/ikjojkniefmpkobmoilpeiiaofcajlgo
Popis Show tab numbers in Google Chrome™ for tab jumping ninja!
Velikost souboru 13.08 KB
Počet instalací 66
Aktuální Verze 1.2.0
Poslední Aktualizace 2020-06-15
Datum Vydání 2020-06-15
Vývojář jonpatterson
Typ Platby free
Webové stránky Rozšíření https://github.com/jonpatterson/tumber
URL Stránky Nápovědy https://github.com/jonpatterson/tumber/issues
Podporované Jazyky 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"
        }
    }
}