Tabco - Search between open tabs

Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.

¿Qué es Tabco - Search between open tabs?

Tabco - Search between open tabs es una extensión de Chrome desarrollada por ChromeStar - Tab Guru, y su función principal es "Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Tabco - Search between open tabs

Descarga archivos de extensión Tabco - Search between open tabs 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

                        How many tabs on your Chrome is open right now? 

Mac: ⌘ + Shift + L Windows: Mac: Ctrl+Shift+L

Tabco is valuable for those who love multitasking with a lot of open tab in any particular time, This Simple chrome tool will help you to search between tabs and switch. 

Features
Use Hot key to search between tabs
Search with Website name                    

Información Básica de la Extensión

Nombre Tabco - Search between open tabs Tabco - Search between open tabs
ID gdlfpemlflmabfaaldihflcbokikbcgk
URL Oficial https://chromewebstore.google.com/detail/tabco-search-between-open/gdlfpemlflmabfaaldihflcbokikbcgk
Descripción Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.
Tamaño del Archivo 161 KB
Cantidad de Instalaciones 40
Versión Actual 0.7.4
Última Actualización 2019-07-24
Fecha de Publicación 2019-07-19
Calificación 4.00/5 Total de 4 Calificaciones
Desarrollador ChromeStar - Tab Guru
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabco - Search between open tabs",
    "description": "Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.",
    "version": "0.7.4",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "browser_action": {
        "default_icon": "browser_action_icon.png",
        "default_title": "Tabco - Comand+shift+l or ctrl+shift+l"
    },
    "icons": {
        "48": "browser_action_icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "showTabSwitcher": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Toggle feature"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "assets\/js\/sanitize-html.js",
                "assets\/js\/jquery.js",
                "assets\/js\/keymaster.js",
                "contentScript.js"
            ],
            "css": [
                "assets\/css\/tab-switcher.css"
            ]
        }
    ],
    "manifest_version": 2
}