Tab search

Search your tabs and switch using the keyboard

Hvad er Tab search?

Tab search er en Chrome-udvidelse udviklet af robert.anderberg, og dens hovedfunktion er "Search your tabs and switch using the keyboard".

Download Tab search-udvidelses-CRX-fil

Download Tab search-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
Officiel URL https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
Beskrivelse Search your tabs and switch using the keyboard
Filstørrelse 138 KB
Antal Installationer 91
Nuværende Version 1.0.2
Senest Opdateret 2014-01-28
Udgivelsesdato 2014-01-28
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler robert.anderberg
Betalingsmetode free
Understøttede Sprog 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"
            }
        }
    }
}