Dyslexia word highlighter

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

What is Dyslexia word highlighter?

Dyslexia word highlighter is a Chrome extension developed by http://www.doart3.com, and its main feature is "This extension tries to help people to read better by higlighting the words.".

Extension Screenshots

screenshot
screenshot

Download Dyslexia word highlighter Extension CRX File

Download Dyslexia word highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
Official URL https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
Description This extension tries to help people to read better by higlighting the words.
File Size 54.94 KB
Installation Count 388
Current Version 1.1
Last Updated 2014-11-26
Publish Date 2014-11-26
Rating 3.00/5 Total 1 Ratings
Developer http://www.doart3.com
Payment Type free
Extension Website https://github.com/daragao/dyslexicHighlighter
Supported Languages 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"
    }
}