Tab Manager Shortcuts

Manage your chrome tabs with keyboard shortcuts.

Что такое Tab Manager Shortcuts?

Tab Manager Shortcuts - это расширение Chrome, разработанное Daniel Pham, и его основная функция - "Manage your chrome tabs with keyboard shortcuts.".

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

screenshot

Скачать файл CRX расширения Tab Manager Shortcuts

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

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

                        Reorder and manage the chrome tabs with customizable keyboard shortcuts

As of v2.0 keybindings must be set through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings as defaults are not longer set (see https://bugs.chromium.org/p/chromium/issues/detail?id=167419).

Source Code:
https://github.com/danhp/tab-manager-chrome                    

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

Название Tab Manager Shortcuts Tab Manager Shortcuts
ID oofoadncochbkbpebpbndghocapamchi
Официальный URL https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi
Описание Manage your chrome tabs with keyboard shortcuts.
Размер файла 21.21 KB
Количество установок 314
Текущая Версия 2.0.0
Последнее Обновление 2016-12-27
Дата публикации 2016-12-27
Рейтинг 3.36/5 Всего 11 оценок
Разработчик Daniel Pham
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/danhp/tab-manager-chrome
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Manager Shortcuts",
    "version": "2.0.0",
    "description": "Manage your chrome tabs with keyboard shortcuts.",
    "homepage_url": "https:\/\/phamdaniel.github.io",
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "background": {
        "persisten": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "tab_manager_pin_current": {
            "description": "Pin or unpin current tab."
        },
        "tab_manager_unpin_all": {
            "description": "Unpin all tabs in current window"
        },
        "tab_manager_move_left": {
            "description": "Move selected tab left"
        },
        "tab_manager_move_right": {
            "description": "Move selected tab right"
        },
        "tab_manager_browse_left": {
            "description": "Switch\/browse tab left"
        },
        "tab_manager_browse_right": {
            "description": "Switch\/browse tab right"
        }
    }
}