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
官方網址 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"
    }
}