Dyslexia word highlighter

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

Qu'est-ce que Dyslexia word highlighter ?

Dyslexia word highlighter est une extension Chrome développée par http://www.doart3.com, et sa fonction principale est "This extension tries to help people to read better by higlighting the words.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Dyslexia word highlighter

Téléchargez les fichiers d'extension Dyslexia word highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
URL Officiel https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
Description This extension tries to help people to read better by higlighting the words.
Taille du Fichier 54.94 KB
Nombre d'Installations 388
Version Actuelle 1.1
Dernière Mise à Jour 2014-11-26
Date de Publication 2014-11-26
Évaluation 3.00/5 Total 1 Évaluations
Développeur http://www.doart3.com
Type de Paiement free
Site Web de l'Extension https://github.com/daragao/dyslexicHighlighter
Langues Prises en Charge 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"
    }
}