Dyslexia word highlighter

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

Co to jest Dyslexia word highlighter?

Dyslexia word highlighter to rozszerzenie Chrome opracowane przez http://www.doart3.com, a jego główną funkcją jest „This extension tries to help people to read better by higlighting the words.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Dyslexia word highlighter

Pobierz pliki rozszerzeń Dyslexia word highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
Oficjalny URL https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
Opis This extension tries to help people to read better by higlighting the words.
Rozmiar pliku 54.94 KB
Liczba instalacji 388
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2014-11-26
Data Publikacji 2014-11-26
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper http://www.doart3.com
Typ Płatności free
Strona Rozszerzenia https://github.com/daragao/dyslexicHighlighter
Obsługiwane Języki 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"
    }
}