Fuzzy Tab Search

Fuzzy search the title and contents of every tab.

Fuzzy Tab Search란 무엇입니까?

Fuzzy Tab Search은(는) Moshe Kolodny에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fuzzy search the title and contents of every tab."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Fuzzy Tab Search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Fuzzy Tab Search allows you allows you to perform a fuzzy search through all your tabs.
Fuzzy Tab Search will show you the tabs in the most recent order used when there is no search text.
Fuzzy Tab Search displays the number of open tabs.

Use Ctrl+Shift+F to launch Fuzzy Tab Search or click the Fuzzy Tab Search icon.

The shortcut can be changed in chrome://extensions/

Icons made by Smashicons from www.flaticon.com is licensed by CC 3.0 BY                    

확장 프로그램 기본 정보

이름 Fuzzy Tab Search Fuzzy Tab Search
ID eigldibiccijmcnikjcibichajdledfl
공식 URL https://chromewebstore.google.com/detail/fuzzy-tab-search/eigldibiccijmcnikjcibichajdledfl
설명 Fuzzy search the title and contents of every tab.
파일 크기 37.08 KB
설치 횟수 117
현재 버전 0.0.0.4
최근 업데이트 2018-01-19
출시 날짜 2018-01-19
평점 5.00/5 총 3 개의 평점
개발자 Moshe Kolodny
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fuzzy Tab Search",
    "description": "Fuzzy search the title and contents of every tab.",
    "version": "0.0.0.4",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Fuzzy search all tabs"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js",
            "fuzzySearch.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}