Dyslexia word highlighter

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

Что такое Dyslexia word highlighter?

Dyslexia word highlighter - это расширение Chrome, разработанное http://www.doart3.com, и его основная функция - "This extension tries to help people to read better by higlighting the words.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Dyslexia word highlighter

Скачайте файлы расширений Dyslexia word highlighter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
Официальный URL https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
Описание This extension tries to help people to read better by higlighting the words.
Размер файла 54.94 KB
Количество установок 388
Текущая Версия 1.1
Последнее Обновление 2014-11-26
Дата публикации 2014-11-26
Рейтинг 3.00/5 Всего 1 оценок
Разработчик http://www.doart3.com
Тип оплаты free
Официальный сайт расширения https://github.com/daragao/dyslexicHighlighter
Поддерживаемые языки 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"
    }
}