Tab Manager Shortcuts

Manage your chrome tabs with keyboard shortcuts.

Cos'è Tab Manager Shortcuts?

Tab Manager Shortcuts è un'estensione di Chrome sviluppata da Daniel Pham, e la sua funzione principale è "Manage your chrome tabs with keyboard shortcuts.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tab Manager Shortcuts

Scarica i file di estensione Tab Manager Shortcuts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Tab Manager Shortcuts Tab Manager Shortcuts
ID oofoadncochbkbpebpbndghocapamchi
URL Ufficiale https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi
Descrizione Manage your chrome tabs with keyboard shortcuts.
Dimensione del File 21.21 KB
Conteggio Installazioni 314
Versione Corrente 2.0.0
Ultimo Aggiornamento 2016-12-27
Data di Pubblicazione 2016-12-27
Valutazione 3.36/5 Totale 11 Valutazioni
Sviluppatore Daniel Pham
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/danhp/tab-manager-chrome
Lingue Supportate 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"
        }
    }
}