tabswitcher

TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…

¿Qué es tabswitcher?

tabswitcher es una extensión de Chrome desarrollada por https://jhchabran.com, y su función principal es "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión tabswitcher

Descarga archivos de extensión tabswitcher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        TL;DR Remember Textmate's Command-T ? It's the same for chrome. 

Warning: shortcut has to be manually set in chrome's extension settings.  
Suggestion: use alt-space.                    

Información Básica de la Extensión

Nombre tabswitcher tabswitcher
ID gkdkligmcadfbagoeggeohelmgalchcn
URL Oficial https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn
Descripción TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
Tamaño del Archivo 375 KB
Cantidad de Instalaciones 22
Versión Actual 1.0.2
Última Actualización 2015-09-29
Fecha de Publicación 2015-09-29
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador https://jhchabran.com
Tipo de Pago free
Sitio Web de la Extensión http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/
URL de la Página de Ayuda https://github.com/jhchabran/tabswitcher
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "tabswitcher",
    "version": "1.0.2",
    "browser_action": {
        "default_title": "Show the popup",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "tabswitcher.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "tabswitcher.js",
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}