Tab search

Search your tabs and switch using the keyboard

What is Tab search?

Tab search is a Chrome extension developed by robert.anderberg, and its main feature is "Search your tabs and switch using the keyboard".

Download Tab search Extension CRX File

Download Tab search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
Official URL https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
Description Search your tabs and switch using the keyboard
File Size 138 KB
Installation Count 91
Current Version 1.0.2
Last Updated 2014-01-28
Publish Date 2014-01-28
Rating 5.00/5 Total 1 Ratings
Developer robert.anderberg
Payment Type free
Supported Languages 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"
            }
        }
    }
}