Tab search

Search your tabs and switch using the keyboard

Qu'est-ce que Tab search ?

Tab search est une extension Chrome développée par robert.anderberg, et sa fonction principale est "Search your tabs and switch using the keyboard".

Télécharger le fichier CRX de l'extension Tab search

Téléchargez les fichiers d'extension Tab search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Hit Ctrl-Y to search all titles, urls and content of all open tabs, select a tab with up/down arrow keys, and hit enter to switch.

What's New?
-----------


If you're switching to a tab in another window, bring that window to the front.                    

Informations de Base sur l'Extension

Nom Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
URL Officiel https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
Description Search your tabs and switch using the keyboard
Taille du Fichier 138 KB
Nombre d'Installations 91
Version Actuelle 1.0.2
Dernière Mise à Jour 2014-01-28
Date de Publication 2014-01-28
Évaluation 5.00/5 Total 1 Évaluations
Développeur robert.anderberg
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab search",
    "description": "Search your tabs and switch using the keyboard",
    "version": "1.0.2",
    "permissions": [
        "tabs",
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Y"
            }
        }
    }
}