Tab search

Search your tabs and switch using the keyboard

Co to jest Tab search?

Tab search to rozszerzenie Chrome opracowane przez robert.anderberg, a jego główną funkcją jest „Search your tabs and switch using the keyboard”.

Pobierz plik CRX rozszerzenia Tab search

Pobierz pliki rozszerzeń Tab search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
Oficjalny URL https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
Opis Search your tabs and switch using the keyboard
Rozmiar pliku 138 KB
Liczba instalacji 91
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2014-01-28
Data Publikacji 2014-01-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper robert.anderberg
Typ Płatności free
Obsługiwane Języki 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"
            }
        }
    }
}