Follow Along - Text Highlighter

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

O que é Follow Along - Text Highlighter?

Follow Along - Text Highlighter é uma extensão do Chrome desenvolvida por ncfausti, e sua principal característica é "A browser extension that allows the user to highlight text on hover.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Follow Along - Text Highlighter

Baixe arquivos de extensão Follow Along - Text Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Follow Along - Text Highlighter Follow Along - Text Highlighter
ID fhpbkbhoeipijhlijiiaeimjnicnmdae
URL Oficial https://chromewebstore.google.com/detail/follow-along-text-highlig/fhpbkbhoeipijhlijiiaeimjnicnmdae
Descrição A browser extension that allows the user to highlight text on hover.
Tamanho do Arquivo 4.91 KB
Contagem de Instalações 112
Versão Atual 1.0
Última Atualização 2020-12-05
Data de Publicação 2020-12-04
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor ncfausti
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}