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
官方網址 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"
            }
        }
    }
}