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ファイルをダウンロード

Type-ahead-find拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}