Tab Mover (Move tabs with keyboard shortcuts)

Move your tabs around with keyboard shortcuts

Cos'è Tab Mover (Move tabs with keyboard shortcuts)?

Tab Mover (Move tabs with keyboard shortcuts) è un'estensione di Chrome sviluppata da Dennis Paagman, e la sua funzione principale è "Move your tabs around with keyboard shortcuts".

Scarica il file CRX dell'estensione Tab Mover (Move tabs with keyboard shortcuts)

Scarica i file di estensione Tab Mover (Move tabs with keyboard 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

                        Move your tabs around with keyboard shortcuts.

Installation instructions:

Install the extension directly from the Chrome Web Store
Scroll to the bottom of your 'Extensions' preferences
Click 'Keyboard Shortcuts' at the bottom right
Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]                    

Informazioni di Base sull'Estensione

Nome Tab Mover (Move tabs with keyboard shortcuts) Tab Mover (Move tabs with keyboard shortcuts)
ID dbkbmgieiomjnpimkilnkkcjioecdmio
URL Ufficiale https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio
Descrizione Move your tabs around with keyboard shortcuts
Dimensione del File 19.11 KB
Conteggio Installazioni 46
Versione Corrente 1.2
Ultimo Aggiornamento 2016-11-25
Data di Pubblicazione 2016-11-25
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Dennis Paagman
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Mover (Move tabs with keyboard shortcuts)",
    "short_name": "Tab Mover",
    "description": "Move your tabs around with keyboard shortcuts",
    "version": "1.2",
    "author": "Dennis Paagman",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png"
    },
    "background": {
        "scripts": [
            "tabMover.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "move-tab-left": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            },
            "description": "Move current tab to the left"
        },
        "move-tab-right": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "Move current tab to the right"
        }
    }
}