Highlit

Highlights all occurrences of the currently selected word on page.

Что такое Highlit?

Highlit - это расширение Chrome, разработанное Nikola Toshev, и его основная функция - "Highlights all occurrences of the currently selected word on page.".

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

screenshot
screenshot
screenshot

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

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

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

                        An extension that highlights all occurrences of the currently selected word or phrase (recognizing different word forms in English). This is useful to outline central concepts in a text, or visually highlight where a specific identifier is used in code in browser window. Double-click a word on the current page to highlight it and all it's occurrences.                    

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

Название Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
Официальный URL https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Описание Highlights all occurrences of the currently selected word on page.
Размер файла 15.58 KB
Количество установок 952
Текущая Версия 0.2.2
Последнее Обновление 2019-03-08
Дата публикации 2019-03-08
Рейтинг 3.19/5 Всего 16 оценок
Разработчик Nikola Toshev
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlit",
    "version": "0.2.2",
    "manifest_version": 2,
    "minimum_chrome_version": "39",
    "description": "Highlights all occurrences of the currently selected word on page.",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lancasterStemming.js",
                "highlit.min.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "*.map"
    ],
    "permissions": [
        "storage"
    ]
}