Type-ahead-find

Find text or links as you type

Type-ahead-find란 무엇입니까?

Type-ahead-find은(는) typeaheadfind에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find text or links as you type"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Type-ahead-find 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Type-ahead-find [1] is an accessibility feature to search links and text faster on a webpage. How to use it:

 * Start writing (or press /) to start text search.
 * Press ' to search only links.
 * Change option "direct search state" to set the default search policy (text, links or disabled).
 * Use (Shift+)F3 or (Shift+)Control+G or Alt+N/P to switch between matches.
 * Use F4 to toggle matching mode (text/links) once the search is active.
 * Blacklist sites that set up their own shortcuts.
 * The search shows first matches in current viewport.

Limitations:

 * It cannot search inside iframes.
 * It does not search text in adjacent HTML nodes (i.e. "hello" won't be found in HTML Hello)
 * If the page already sets Javascript keybidings, the extension may misbehave. The best solution is to blacklist the site in the options page and disable the extension for this particular website.                    

확장 프로그램 기본 정보

이름 Type-ahead-find Type-ahead-find
ID cpecbmjeidppdiampimghndkikcmoadk
공식 URL https://chromewebstore.google.com/detail/type-ahead-find/cpecbmjeidppdiampimghndkikcmoadk
설명 Find text or links as you type
파일 크기 17.05 KB
설치 횟수 12,595
현재 버전 0.4.5
최근 업데이트 2021-11-23
출시 날짜 2014-11-28
평점 4.49/5 총 375 개의 평점
개발자 typeaheadfind
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Foxy/chrome-type-ahead
도움말 페이지 URL https://github.com/Foxy/chrome-type-ahead
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Type-ahead-find",
    "description": "Find text or links as you type",
    "version": "0.4.5",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "type-ahead.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "icon-48.png"
    }
}