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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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