Tumber - Tab Numbers for Google Chrome™

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

Что такое Tumber - Tab Numbers for Google Chrome™?

Tumber - Tab Numbers for Google Chrome™ - это расширение Chrome, разработанное jonpatterson, и его основная функция - "Show tab numbers in Google Chrome™ for tab jumping ninja!".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Tumber - Tab Numbers for Google Chrome™

Скачайте файлы расширений Tumber - Tab Numbers for Google Chrome™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Tumber - Tab Numbers for Google Chrome™ Tumber - Tab Numbers for Google Chrome™
ID ikjojkniefmpkobmoilpeiiaofcajlgo
Официальный URL https://chromewebstore.google.com/detail/tumber-tab-numbers-for-go/ikjojkniefmpkobmoilpeiiaofcajlgo
Описание Show tab numbers in Google Chrome™ for tab jumping ninja!
Размер файла 13.08 KB
Количество установок 66
Текущая Версия 1.2.0
Последнее Обновление 2020-06-15
Дата публикации 2020-06-15
Разработчик jonpatterson
Тип оплаты free
Официальный сайт расширения https://github.com/jonpatterson/tumber
URL страницы помощи https://github.com/jonpatterson/tumber/issues
Поддерживаемые языки 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"
        }
    }
}