Tab search

Search your tabs and switch using the keyboard

Vad är Tab search?

Tab search är en Chrome-tillägg utvecklad av robert.anderberg, och dess huvudfunktion är "Search your tabs and switch using the keyboard".

Ladda ner Tab search-förlängningens CRX-fil

Ladda ner Tab search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
Officiell webbadress https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
Beskrivning Search your tabs and switch using the keyboard
Filstorlek 138 KB
Antal Installationer 91
Aktuell Version 1.0.2
Senast Uppdaterad 2014-01-28
Publiceringsdatum 2014-01-28
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare robert.anderberg
Betalningssätt free
Stödda Språk 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"
            }
        }
    }
}