Follow Along - Text Highlighter

A browser extension that allows the user to highlight text on hover.

Что такое Follow Along - Text Highlighter?

Follow Along - Text Highlighter - это расширение Chrome, разработанное ncfausti, и его основная функция - "A browser extension that allows the user to highlight text on hover.".

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

screenshot

Скачать файл CRX расширения Follow Along - Text Highlighter

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

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

                        I created this tool to make reading webpages (and staying focused on the current line) on my laptop a little bit easier. Helpful for those with Dyslexia and ADHD.

Highlights text that is underneath the mouse cursor. Only works on paragraph tags in HTML, so it only highlights areas with lots of continuous text (e.g. blogs, newspaper articles, etc).

Created by Nick Fausti.
https://nickfausti.com                    

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

Название Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
Официальный URL https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
Описание A browser extension that allows the user to highlight text on hover.
Размер файла 4.91 KB
Количество установок 112
Текущая Версия 1.0
Последнее Обновление 2020-12-05
Дата публикации 2020-12-04
Рейтинг 1.00/5 Всего 1 оценок
Разработчик ncfausti
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Follow Along - Text Highlighter",
    "description": "A browser extension that allows the user to highlight text on hover.",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}