Chrome tab explorer

Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.

Chrome tab explorer란 무엇입니까?

Chrome tab explorer은(는) https://sites.google.com/site/fujundu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Chrome tab explorer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Having too many tabs and windows opened in your Chrome browser and having a hard time to keep track of which is which?

This extension lets you search through the tabs using keywords in the title and url of the page.  It also shows tab count.

"Bookmark all" will bookmark all tabs in a directory under "Other Bookmarks" of your bookmark folder.

It can be called out by "Alt + T".                    

확장 프로그램 기본 정보

이름 Chrome tab explorer Chrome tab explorer
ID cjfnaklodefmmoikdpdaagkhbjijlpif
공식 URL https://chromewebstore.google.com/detail/chrome-tab-explorer/cjfnaklodefmmoikdpdaagkhbjijlpif
설명 Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.
파일 크기 10.11 KB
설치 횟수 190
현재 버전 0.4
최근 업데이트 2017-12-22
출시 날짜 2017-12-22
개발자 https://sites.google.com/site/fujundu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/fjdu/tabExplorer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome tab explorer",
    "short_name": "Tab explorer",
    "description": "Navigate through the tabs by searching keywords in the page title or url.  Also shows the tab count.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Find tabs by searching keywords in the title or url.  Shortcut: Alt+T."
    },
    "permissions": [
        "tabs",
        "storage",
        "bookmarks",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+T",
                "mac": "Alt+T",
                "chromeos": "Alt+T",
                "linux": "Alt+T"
            }
        }
    }
}