Follow Along - Text Highlighter

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

Wat is Follow Along - Text Highlighter?

Follow Along - Text Highlighter is een Chrome-extensie ontwikkeld door ncfausti, en de belangrijkste functie is "A browser extension that allows the user to highlight text on hover.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Follow Along - Text Highlighter

Download Follow Along - Text Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
Officiële URL https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
Beschrijving A browser extension that allows the user to highlight text on hover.
Bestandsgrootte 4.91 KB
Aantal Installaties 112
Huidige Versie 1.0
Laatst Bijgewerkt 2020-12-05
Publicatiedatum 2020-12-04
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar ncfausti
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}