Type-ahead-find

Find text or links as you type

Что такое Type-ahead-find?

Type-ahead-find - это расширение Chrome, разработанное typeaheadfind, и его основная функция - "Find text or links as you type".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Type-ahead-find

Скачайте файлы расширений 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
Электронная почта [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"
    }
}