New Tab in Group

Opens a new tab in the current group via keyboard shortcut

Что такое New Tab in Group?

New Tab in Group - это расширение Chrome, разработанное Toby Wolff-Maritz, и его основная функция - "Opens a new tab in the current group via keyboard shortcut".

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

screenshot

Скачать файл CRX расширения New Tab in Group

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

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

                        A simple extension that opens a new tab in the current tab group using a shortcut.

Windows: Ctrl+Shift+Y
Mac: Command+Shift+Y
Chrome OS: Ctrl+Shift+U
Linux: Ctrl+Shift+J                    

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

Название New Tab in Group New Tab in Group
ID cgcjmikekhoocfjbihnklkpfapmgjboi
Официальный URL https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi
Описание Opens a new tab in the current group via keyboard shortcut
Размер файла 9.3 KB
Количество установок 63
Текущая Версия 0.0.1
Последнее Обновление 2022-07-25
Дата публикации 2022-07-23
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Toby Wolff-Maritz
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/tmaritz/chrome-extension-new-tab-in-group
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab in Group",
    "version": "0.0.1",
    "description": "Opens a new tab in the current group via keyboard shortcut",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        }
    },
    "icons": {
        "16": "assets\/layer-plus16.png",
        "32": "assets\/layer-plus32.png",
        "64": "assets\/layer-plus64.png",
        "128": "assets\/layer-plus128.png"
    }
}