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