Follow Along - Text Highlighter

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

¿Qué es Follow Along - Text Highlighter?

Follow Along - Text Highlighter es una extensión de Chrome desarrollada por ncfausti, y su función principal es "A browser extension that allows the user to highlight text on hover.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Follow Along - Text Highlighter

Descarga archivos de extensión Follow Along - Text Highlighter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
URL Oficial https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
Descripción A browser extension that allows the user to highlight text on hover.
Tamaño del Archivo 4.91 KB
Cantidad de Instalaciones 112
Versión Actual 1.0
Última Actualización 2020-12-05
Fecha de Publicación 2020-12-04
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador ncfausti
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}