Dyslexia word highlighter

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

Hvad er Dyslexia word highlighter?

Dyslexia word highlighter er en Chrome-udvidelse udviklet af http://www.doart3.com, og dens hovedfunktion er "This extension tries to help people to read better by higlighting the words.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Dyslexia word highlighter-udvidelses-CRX-fil

Download Dyslexia word highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
Officiel URL https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
Beskrivelse This extension tries to help people to read better by higlighting the words.
Filstørrelse 54.94 KB
Antal Installationer 388
Nuværende Version 1.1
Senest Opdateret 2014-11-26
Udgivelsesdato 2014-11-26
Bedømmelse 3.00/5 Samlet 1 Bedømmelser
Udvikler http://www.doart3.com
Betalingsmetode free
Udvidelseswebsted https://github.com/daragao/dyslexicHighlighter
Understøttede Sprog 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"
    }
}