Tab search

Search your tabs and switch using the keyboard

Tab searchとは何ですか?

Tab searchはrobert.anderbergによって開発されたChromeの拡張機能で、その主な機能は「Search your tabs and switch using the keyboard」です。

Tab search拡張機能のCRXファイルをダウンロード

Tab search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
公式URL https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
説明 Search your tabs and switch using the keyboard
ファイルサイズ 138 KB
インストール数 91
現在のバージョン 1.0.2
最終更新日 2014-01-28
公開日 2014-01-28
評価 5.00/5 合計 1 レビュー
開発者 robert.anderberg
支払い方法 free
対応言語 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"
            }
        }
    }
}