Dyslexia word highlighter

This extension tries to help people to read better by higlighting the words.

O que é Dyslexia word highlighter?

Dyslexia word highlighter é uma extensão do Chrome desenvolvida por http://www.doart3.com, e sua principal característica é "This extension tries to help people to read better by higlighting the words.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Dyslexia word highlighter

Baixe arquivos de extensão Dyslexia word 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

                        Extension to allow users to read better by highlighting the words under the mouse.

This is my first version, and a very  simple one, it will get better with time hopefully. All feedback is welcome :)                    

Informações Básicas da Extensão

Nome Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
URL Oficial https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
Descrição This extension tries to help people to read better by higlighting the words.
Tamanho do Arquivo 54.94 KB
Contagem de Instalações 388
Versão Atual 1.1
Última Atualização 2014-11-26
Data de Publicação 2014-11-26
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor http://www.doart3.com
Tipo de Pagamento free
Site da Extensão https://github.com/daragao/dyslexicHighlighter
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dyslexia word highlighter",
    "description": "This extension tries to help people to read better by higlighting the words.",
    "version": "1.1",
    "permissions": [
        "input",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "libs\/jquery.min.js",
                "libs\/underscore-min.js",
                "src\/js\/scriptAux.js"
            ],
            "css": [
                "src\/css\/dyslexia.css"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "src\/html\/options.html",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon64.png",
        "default_title": "Chrome Extension test"
    }
}