Tab Mover (Move tabs with keyboard shortcuts)

Move your tabs around with keyboard shortcuts

O que é Tab Mover (Move tabs with keyboard shortcuts)?

Tab Mover (Move tabs with keyboard shortcuts) é uma extensão do Chrome desenvolvida por Dennis Paagman, e sua principal característica é "Move your tabs around with keyboard shortcuts".

Baixar o arquivo CRX da Extensão Tab Mover (Move tabs with keyboard shortcuts)

Baixe arquivos de extensão Tab Mover (Move tabs with keyboard shortcuts) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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-]                    

Informações Básicas da Extensão

Nome Tab Mover (Move tabs with keyboard shortcuts) Tab Mover (Move tabs with keyboard shortcuts)
ID dbkbmgieiomjnpimkilnkkcjioecdmio
URL Oficial https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio
Descrição Move your tabs around with keyboard shortcuts
Tamanho do Arquivo 19.11 KB
Contagem de Instalações 46
Versão Atual 1.2
Última Atualização 2016-11-25
Data de Publicação 2016-11-25
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor Dennis Paagman
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    }
}