Selection Highlighter

Highlight occurrences of selected text, with or without a keypress.

Что такое Selection Highlighter?

Selection Highlighter - это расширение Chrome, разработанное https://neaumusic.com, и его основная функция - "Highlight occurrences of selected text, with or without a keypress.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Selection Highlighter

Скачайте файлы расширений Selection Highlighter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        For code inspection and document analysis: search for and find keywords.

- No need to press CMD+F
- Maintains current selection
- Open source and configurable options (JavaScript)
- Ensure a "gate" key is pressed
- Match whole word and/or case-insensitive
- Blacklist bad hosts and ancestor HTML nodes

Highlight works on all sites, including GitHub, StackOverflow, HackerNews, Reddit, etc.

See all code involved:
1. Dev Console -> Sources -> Content Scripts -> Selection Highlighter
2. chrome://extensions -> Selection Highlighter -> Options -> Dev Console -> Sources

https://github.com/neaumusic/selection-highlighter                    

Основная информация о расширении

Название Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
Официальный URL https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
Описание Highlight occurrences of selected text, with or without a keypress.
Размер файла 470 KB
Количество установок 8,418
Текущая Версия 3.1.0
Последнее Обновление 2024-01-14
Дата публикации 2020-06-07
Рейтинг 4.59/5 Всего 78 оценок
Разработчик https://neaumusic.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/neaumusic/selection-highlighter
URL страницы помощи https://github.com/neaumusic/selection-highlighter/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Highlighter",
    "version": "3.1.0",
    "description": "Highlight occurrences of selected text, with or without a keypress.",
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content_script\/main.js"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "Selection Highlighter",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "1024": "images\/icon.png"
    },
    "permissions": [
        "storage"
    ]
}