Tumber - Tab Numbers for Google Chrome™

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

Co to jest Tumber - Tab Numbers for Google Chrome™?

Tumber - Tab Numbers for Google Chrome™ to rozszerzenie Chrome opracowane przez jonpatterson, a jego główną funkcją jest „Show tab numbers in Google Chrome™ for tab jumping ninja!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Tumber - Tab Numbers for Google Chrome™

Pobierz pliki rozszerzeń Tumber - Tab Numbers for Google Chrome™ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Tumber - Tab Numbers for Google Chrome™ Tumber - Tab Numbers for Google Chrome™
ID ikjojkniefmpkobmoilpeiiaofcajlgo
Oficjalny URL https://chromewebstore.google.com/detail/tumber-tab-numbers-for-go/ikjojkniefmpkobmoilpeiiaofcajlgo
Opis Show tab numbers in Google Chrome™ for tab jumping ninja!
Rozmiar pliku 13.08 KB
Liczba instalacji 66
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2020-06-15
Data Publikacji 2020-06-15
Deweloper jonpatterson
Typ Płatności free
Strona Rozszerzenia https://github.com/jonpatterson/tumber
Adres URL Strony Pomocy https://github.com/jonpatterson/tumber/issues
Obsługiwane Języki 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"
        }
    }
}