Tab and Tab Group Shortcuts

Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.

Τι είναι το Tab and Tab Group Shortcuts;

Το Tab and Tab Group Shortcuts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον bmalehorn, και η κύρια λειτουργία του είναι "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tab and Tab Group Shortcuts

Λήψη αρχείων επέκτασης Tab and Tab Group Shortcuts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Adds multiple shortcuts to manage tabs:


Opens a tab in the same group as the current tab.
Mac: Command+Shift+Y
Windows: Ctrl+Shift+Y

Swap the tab to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Swap the tab to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Move focus to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Move focus to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Tab and Tab Group Shortcuts Tab and Tab Group Shortcuts
ID nnbnphmhdbcgnekonlgniafbpcpapkep
Επίσημο URL https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep
Περιγραφή Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
Μέγεθος Αρχείου 6.83 KB
Αριθμός Εγκαταστάσεων 216
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2023-10-08
Ημερομηνία Δημοσίευσης 2022-07-19
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής bmalehorn
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/bmalehorn/new-tab-in-tab-group
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab and Tab Group Shortcuts",
    "description": "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.",
    "version": "1.0.6",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "tabGroups"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "swap-right": {
            "description": "Swap tab to the right"
        },
        "swap-left": {
            "description": "Swap tab to the left"
        },
        "focus-left-into-group": {
            "description": "Move focus left into tab group"
        },
        "focus-right-into-group": {
            "description": "Move focus right into tab group"
        },
        "new-tab-in-group": {
            "description": "Open New Tab in Group",
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            }
        }
    },
    "icons": {
        "128": "icon.png"
    }
}