Follow Along - Text Highlighter

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

Vad är Follow Along - Text Highlighter?

Follow Along - Text Highlighter är en Chrome-tillägg utvecklad av ncfausti, och dess huvudfunktion är "A browser extension that allows the user to highlight text on hover.".

Tilläggsskärmbilder

screenshot

Ladda ner Follow Along - Text Highlighter-förlängningens CRX-fil

Ladda ner Follow Along - Text Highlighter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
Officiell webbadress https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
Beskrivning A browser extension that allows the user to highlight text on hover.
Filstorlek 4.91 KB
Antal Installationer 112
Aktuell Version 1.0
Senast Uppdaterad 2020-12-05
Publiceringsdatum 2020-12-04
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare ncfausti
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}