Move Tab Left

This extension allows you to put the current tab at the beggining of the tab bar.

O que é Move Tab Left?

Move Tab Left é uma extensão do Chrome desenvolvida por mp, e sua principal característica é "This extension allows you to put the current tab at the beggining of the tab bar.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Move Tab Left

Baixe arquivos de extensão Move Tab Left 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

                        Very often you need to move the current tab to the beginning of the tab bar, to the left.

This extension allows you to put the tab at the first position, moves it to the left, with just a click of a button or with a keyboard shortcut.

By default the keyboard shortcut is set to ctrl + left_arrow, to change it go to Settings -> Extensions -> Keyboard Shortcuts (it's at the bottom).

Update V2:
- Added context menus to put tab in first, second and third place. So if you want to move the tab to the left to the second spot you can right click the extension icon and hit "2. Put in second place".                    

Informações Básicas da Extensão

Nome Move Tab Left Move Tab Left
ID flgjflnifhabbdliblomhkhoplfhheie
URL Oficial https://chromewebstore.google.com/detail/move-tab-left/flgjflnifhabbdliblomhkhoplfhheie
Descrição This extension allows you to put the current tab at the beggining of the tab bar.
Tamanho do Arquivo 7.64 KB
Contagem de Instalações 207
Versão Atual 2.1
Última Atualização 2016-08-28
Data de Publicação 2016-08-28
Classificação 4.00/5 Total de 4 Avaliações
Desenvolvedor mp
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://brostack.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Move Tab Left",
    "description": "This extension allows you to put the current tab at the beggining of the tab bar.",
    "version": "2.1",
    "browser_action": {
        "default_icon": {
            "38": "icon38.png"
        },
        "default_title": "Move Tab Left"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "move_tab": {
            "suggested_key": {
                "default": "Ctrl+Left",
                "mac": "Command+Left"
            },
            "description": "Put tab at the beginning"
        }
    }
}