Dyslexia word highlighter

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

Cos'è Dyslexia word highlighter?

Dyslexia word highlighter è un'estensione di Chrome sviluppata da http://www.doart3.com, e la sua funzione principale è "This extension tries to help people to read better by higlighting the words.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Dyslexia word highlighter

Scarica i file di estensione Dyslexia word highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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 :)                    

Informazioni di Base sull'Estensione

Nome Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
URL Ufficiale https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
Descrizione This extension tries to help people to read better by higlighting the words.
Dimensione del File 54.94 KB
Conteggio Installazioni 388
Versione Corrente 1.1
Ultimo Aggiornamento 2014-11-26
Data di Pubblicazione 2014-11-26
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore http://www.doart3.com
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/daragao/dyslexicHighlighter
Lingue Supportate 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"
    }
}