Follow Along - Text Highlighter

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

Cos'è Follow Along - Text Highlighter?

Follow Along - Text Highlighter è un'estensione di Chrome sviluppata da ncfausti, e la sua funzione principale è "A browser extension that allows the user to highlight text on hover.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Follow Along - Text Highlighter

Scarica i file di estensione Follow Along - Text Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
URL Ufficiale https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
Descrizione A browser extension that allows the user to highlight text on hover.
Dimensione del File 4.91 KB
Conteggio Installazioni 112
Versione Corrente 1.0
Ultimo Aggiornamento 2020-12-05
Data di Pubblicazione 2020-12-04
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore ncfausti
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}