Tabco - Search between open tabs

Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.

Tabco - Search between open tabs란 무엇입니까?

Tabco - Search between open tabs은(는) ChromeStar - Tab Guru에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Tabco - Search between open tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        How many tabs on your Chrome is open right now? 

Mac: ⌘ + Shift + L Windows: Mac: Ctrl+Shift+L

Tabco is valuable for those who love multitasking with a lot of open tab in any particular time, This Simple chrome tool will help you to search between tabs and switch. 

Features
Use Hot key to search between tabs
Search with Website name                    

확장 프로그램 기본 정보

이름 Tabco - Search between open tabs Tabco - Search between open tabs
ID gdlfpemlflmabfaaldihflcbokikbcgk
공식 URL https://chromewebstore.google.com/detail/tabco-search-between-open/gdlfpemlflmabfaaldihflcbokikbcgk
설명 Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.
파일 크기 161 KB
설치 횟수 40
현재 버전 0.7.4
최근 업데이트 2019-07-24
출시 날짜 2019-07-19
평점 4.00/5 총 4 개의 평점
개발자 ChromeStar - Tab Guru
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabco - Search between open tabs",
    "description": "Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.",
    "version": "0.7.4",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "browser_action": {
        "default_icon": "browser_action_icon.png",
        "default_title": "Tabco - Comand+shift+l or ctrl+shift+l"
    },
    "icons": {
        "48": "browser_action_icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "showTabSwitcher": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Toggle feature"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "assets\/js\/sanitize-html.js",
                "assets\/js\/jquery.js",
                "assets\/js\/keymaster.js",
                "contentScript.js"
            ],
            "css": [
                "assets\/css\/tab-switcher.css"
            ]
        }
    ],
    "manifest_version": 2
}