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"
            }
        }
    }
}