Dyslexia word highlighter

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

Co je Dyslexia word highlighter?

Dyslexia word highlighter je rozšíření Chrome vyvinuté http://www.doart3.com, a jeho hlavní funkcí je „This extension tries to help people to read better by higlighting the words.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Dyslexia word highlighter

Stáhněte si soubory rozšíření Dyslexia word highlighter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
Oficiální URL https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
Popis This extension tries to help people to read better by higlighting the words.
Velikost souboru 54.94 KB
Počet instalací 388
Aktuální Verze 1.1
Poslední Aktualizace 2014-11-26
Datum Vydání 2014-11-26
Hodnocení 3.00/5 Celkem 1 Hodnocení
Vývojář http://www.doart3.com
Typ Platby free
Webové stránky Rozšíření https://github.com/daragao/dyslexicHighlighter
Podporované Jazyky 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"
    }
}