MRU Tab Toggle

Makes switching tabs manageable even when many are open!

O que é MRU Tab Toggle?

MRU Tab Toggle é uma extensão do Chrome desenvolvida por ben.borchard, e sua principal característica é "Makes switching tabs manageable even when many are open!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão MRU Tab Toggle

Baixe arquivos de extensão MRU Tab Toggle 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

                        This is a fairly simple extension that allows you to navigate through your tabs in the same way you navigate through your windows when you use the Alt-Tab functionality.

The shortcuts need to be set using the keyboard shortcuts link on the chrome extension dashboard and can be changed depending on your preference.

This is helpful if you would like to have many tabs open but be able to switch between only a couple that you happen to be using quickly and easily.                    

Informações Básicas da Extensão

Nome MRU Tab Toggle MRU Tab Toggle
ID ffnhjdgocgbpgnhkeamobligjppaacho
URL Oficial https://chromewebstore.google.com/detail/mru-tab-toggle/ffnhjdgocgbpgnhkeamobligjppaacho
Descrição Makes switching tabs manageable even when many are open!
Tamanho do Arquivo 103 KB
Contagem de Instalações 10
Versão Atual 1.0
Última Atualização 2015-05-28
Data de Publicação 2015-05-28
Classificação 1.67/5 Total de 3 Avaliações
Desenvolvedor ben.borchard
Tipo de Pagamento free
Site da Extensão https://github.com/ben-borchard/ChromeExtensions/tree/master/MostRecentlyUsedTabs/src
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MRU Tab Toggle",
    "description": "Makes switching tabs manageable even when many are open!",
    "version": "1.0",
    "background": {
        "page": "html\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/jquery-1.10.2.js",
                "js\/content.js"
            ]
        }
    ],
    "commands": {
        "Toggle-Tab-Forward": {
            "suggested_key": {
                "default": "Ctrl+A",
                "mac": "MacCtrl+Q"
            },
            "description": "Toggle Tab Forward"
        },
        "Toggle-Tab-Backward": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "MacCtrl+Shift+Q"
            },
            "description": "Toggle Tab Backward"
        }
    },
    "icons": {
        "48": "images\/icon48.jpg",
        "128": "images\/icon128.jpg"
    },
    "web_accessible_resources": [
        "images\/chrome.png",
        "images\/newTab.PNG",
        "images\/defaultIcon.png"
    ],
    "permissions": [
        "tabs"
    ]
}