New Tab in Group

Opens a new tab in the current group via keyboard shortcut

Qu'est-ce que New Tab in Group ?

New Tab in Group est une extension Chrome développée par Toby Wolff-Maritz, et sa fonction principale est "Opens a new tab in the current group via keyboard shortcut".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension New Tab in Group

Téléchargez les fichiers d'extension New Tab in Group au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom New Tab in Group New Tab in Group
ID cgcjmikekhoocfjbihnklkpfapmgjboi
URL Officiel https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi
Description Opens a new tab in the current group via keyboard shortcut
Taille du Fichier 9.3 KB
Nombre d'Installations 63
Version Actuelle 0.0.1
Dernière Mise à Jour 2022-07-25
Date de Publication 2022-07-23
Évaluation 5.00/5 Total 2 Évaluations
Développeur Toby Wolff-Maritz
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/tmaritz/chrome-extension-new-tab-in-group
Langues Prises en Charge 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"
    }
}