Follow Along - Text Highlighter

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

Qu'est-ce que Follow Along - Text Highlighter ?

Follow Along - Text Highlighter est une extension Chrome développée par ncfausti, et sa fonction principale est "A browser extension that allows the user to highlight text on hover.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Follow Along - Text Highlighter

Téléchargez les fichiers d'extension Follow Along - Text Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
URL Officiel https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
Description A browser extension that allows the user to highlight text on hover.
Taille du Fichier 4.91 KB
Nombre d'Installations 112
Version Actuelle 1.0
Dernière Mise à Jour 2020-12-05
Date de Publication 2020-12-04
Évaluation 1.00/5 Total 1 Évaluations
Développeur ncfausti
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}