Fuzzy Find

Context based search with advanced options.

Fuzzy Find란 무엇입니까?

Fuzzy Find은(는) Amateur Devs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Context based search with advanced options."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The internet is cluttered with data. Although more data is always a good thing, there is an emerging need to segregate and classify relevant data from junk.

Fuzzy Find is an attempt to bridge the gap in development between typical search engines and in-browser search to provide an optimized in-browser search functionality.

Fuzzy Find can match words on a page which even vaguely relate to the words you type in!

Using the extension is as simple as pressing install above and then pressing the keyboard combination Alt + Shift + F.

NOTE: Fuzzy Find is currently in development and made available only for testing. In case of any bugs or improvements, please contact at [email protected] or [email protected]

FEATURES

- Matching words on a page that share meaning similar to the query.

- Matching words on a page that have similar phonetic sound. [Homophones]

- Find words that are spelled similar to the query words. [Spell correction]

- Querying for words that are strongly related/describe the query phrase.

- Searching for words that are related to the query and start with a particular letter(s).

- Words that often follow a term and start with a particular letter(s).                    

확장 프로그램 기본 정보

이름 Fuzzy Find Fuzzy Find
ID dfafheanadakbldaidemclfenpkednod
공식 URL https://chromewebstore.google.com/detail/fuzzy-find/dfafheanadakbldaidemclfenpkednod
설명 Context based search with advanced options.
파일 크기 71.1 KB
설치 횟수 195
현재 버전 0.15
최근 업데이트 2022-11-27
출시 날짜 2020-05-05
평점 5.00/5 총 2 개의 평점
개발자 Amateur Devs
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fuzzy Find",
    "description": "Context based search with advanced options.",
    "version": "0.15",
    "icons": {
        "16": "logos\/logo-16.png",
        "32": "logos\/logo-32.png",
        "192": "logos\/logo-192.png",
        "512": "logos\/logo-512.png"
    },
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "Fuzzy Find"
    },
    "permissions": [
        "activeTab",
        "https:\/\/api.datamuse.com\/*"
    ],
    "background": {
        "scripts": [
            "background\/scriptInjector.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F",
                "mac": "Alt+Shift+F"
            },
            "description": "Launch Fuzzy Find"
        }
    }
}