Follow Along - Text Highlighter

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

Co to jest Follow Along - Text Highlighter?

Follow Along - Text Highlighter to rozszerzenie Chrome opracowane przez ncfausti, a jego główną funkcją jest „A browser extension that allows the user to highlight text on hover.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Follow Along - Text Highlighter

Pobierz pliki rozszerzeń Follow Along - Text Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
Oficjalny URL https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
Opis A browser extension that allows the user to highlight text on hover.
Rozmiar pliku 4.91 KB
Liczba instalacji 112
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-12-05
Data Publikacji 2020-12-04
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper ncfausti
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}