Help Me Read!

An extension to help people with dyslexia problem to read web pages easily

O que é Help Me Read!?

Help Me Read! é uma extensão do Chrome desenvolvida por https://informatica.math.unipd.it, e sua principal característica é "An extension to help people with dyslexia problem to read web pages easily".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Help Me Read!

Baixe arquivos de extensão Help Me Read! 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

                        Help Me Read! is a powerful tool for people with dyslexia or problem with color vision.
It allows to change the color of the text and of the background, the user can choose between a set of predefined setting, or can autonomously choose the preferred color. 
Moreover this extension also allows to enlarge every single word to help reading.                    

Informações Básicas da Extensão

Nome Help Me Read! Help Me Read!
ID kdeafkgaagpgmdbidapennjlnmgdjekj
URL Oficial https://chromewebstore.google.com/detail/help-me-read/kdeafkgaagpgmdbidapennjlnmgdjekj
Descrição An extension to help people with dyslexia problem to read web pages easily
Tamanho do Arquivo 52.19 KB
Contagem de Instalações 75
Versão Atual 0.0.1
Última Atualização 2019-11-15
Data de Publicação 2019-11-14
Desenvolvedor https://informatica.math.unipd.it
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Help Me Read!",
    "version": "0.0.1",
    "manifest_version": 2,
    "author": "Rudy Berton",
    "description": "An extension to help people with dyslexia problem to read web pages easily",
    "icons": {
        "16": "img\/16x16.png",
        "32": "img\/32x32.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Help me read!",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.4.1.min.js",
                "contentScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}