Type-ahead-find

Find text or links as you type

Type-ahead-find là gì?

Type-ahead-find là một tiện ích mở rộng Chrome được phát triển bởi typeaheadfind, và tính năng chính của nó là "Find text or links as you type".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Type-ahead-find

Tải xuống các tệp mở rộng Type-ahead-find dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Type-ahead-find Type-ahead-find
ID cpecbmjeidppdiampimghndkikcmoadk
URL Chính Thức https://chromewebstore.google.com/detail/type-ahead-find/cpecbmjeidppdiampimghndkikcmoadk
Mô tả Find text or links as you type
Kích Thước Tệp 17.05 KB
Số Lần Cài Đặt 12,595
Phiên Bản Hiện Tại 0.4.5
Cập Nhật Lần Cuối 2021-11-23
Ngày Phát Hành 2014-11-28
Đánh Giá 4.49/5 Tổng số 375 Đánh Giá
Nhà Phát Triển typeaheadfind
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Foxy/chrome-type-ahead
URL Trang Trợ Giúp https://github.com/Foxy/chrome-type-ahead
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}