Follow Along - Text Highlighter

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

Hvad er Follow Along - Text Highlighter?

Follow Along - Text Highlighter er en Chrome-udvidelse udviklet af ncfausti, og dens hovedfunktion er "A browser extension that allows the user to highlight text on hover.".

Udvidelsesskærmbilleder

screenshot

Download Follow Along - Text Highlighter-udvidelses-CRX-fil

Download Follow Along - Text Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
Officiel URL https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
Beskrivelse A browser extension that allows the user to highlight text on hover.
Filstørrelse 4.91 KB
Antal Installationer 112
Nuværende Version 1.0
Senest Opdateret 2020-12-05
Udgivelsesdato 2020-12-04
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler ncfausti
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}