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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}