New Tab in Group

Opens a new tab in the current group via keyboard shortcut

Co to jest New Tab in Group?

New Tab in Group to rozszerzenie Chrome opracowane przez Toby Wolff-Maritz, a jego główną funkcją jest „Opens a new tab in the current group via keyboard shortcut”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia New Tab in Group

Pobierz pliki rozszerzeń New Tab in Group 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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa New Tab in Group New Tab in Group
ID cgcjmikekhoocfjbihnklkpfapmgjboi
Oficjalny URL https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi
Opis Opens a new tab in the current group via keyboard shortcut
Rozmiar pliku 9.3 KB
Liczba instalacji 63
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2022-07-25
Data Publikacji 2022-07-23
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Toby Wolff-Maritz
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/tmaritz/chrome-extension-new-tab-in-group
Obsługiwane Języki 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"
    }
}