Tab search

Search your tabs and switch using the keyboard

Wat is Tab search?

Tab search is een Chrome-extensie ontwikkeld door robert.anderberg, en de belangrijkste functie is "Search your tabs and switch using the keyboard".

Download het CRX-bestand van de extensie Tab search

Download Tab search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
Officiële URL https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
Beschrijving Search your tabs and switch using the keyboard
Bestandsgrootte 138 KB
Aantal Installaties 91
Huidige Versie 1.0.2
Laatst Bijgewerkt 2014-01-28
Publicatiedatum 2014-01-28
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar robert.anderberg
Betalingswijze free
Ondersteunde Talen 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"
            }
        }
    }
}