Dyslexia Friendly

Increases readability of websites by changing to easier-to-read fonts and adding visual enhancements

Dyslexia Friendlyคืออะไร?

Dyslexia Friendly เป็นส่วนขยายของ Chrome ที่พัฒนาโดย javoire และคุณลักษณะหลักของมันคือ "Increases readability of websites by changing to easier-to-read fonts and adding visual enhancements"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dyslexia Friendly

ดาวน์โหลดไฟล์ส่วนขยาย Dyslexia Friendly ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A simple-to-use open source dyslexia reader helper extension.

Features:
✔ Change the font on websites to either OpenDyslexic or Comic Sans.
✔ Contrast between paragraphs of text is enhanced with different background color for even and odd paragraphs.
✔ Reading-ruler following the mouse cursor.

The above settings can be be configured to preference.

Feel free to leave a comment about your experience and how this could be further improved.

This extension is open-source and the source code can be found at: https://github.com/javoire/dyslexia-friendly                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Dyslexia Friendly Dyslexia Friendly
ID miepjgfkkommhllbbjaedffcpkncboeo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dyslexia-friendly/miepjgfkkommhllbbjaedffcpkncboeo
คำอธิบาย Increases readability of websites by changing to easier-to-read fonts and adding visual enhancements
ขนาดไฟล์ 689 KB
จำนวนการติดตั้ง 11,585
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2022-03-03
วันที่เผยแพร่ 2019-12-22
คะแนน 4.18/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา javoire
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Increases readability of websites by changing to easier-to-read fonts and adding visual enhancements",
    "version": "1.0.3",
    "name": "Dyslexia Friendly",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon-16.png",
        "128": "img\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Make the website dyslexia friendly",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/fonts.css",
                "css\/contentscript.css"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "permissions": [
        "background",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "fonts\/opendyslexic-regular-webfont.eot",
        "fonts\/opendyslexic-regular-webfont.eot",
        "fonts\/opendyslexic-regular-webfont.woff",
        "fonts\/opendyslexic-regular-webfont.ttf",
        "fonts\/opendyslexic-regular-webfont.svg",
        "fonts\/opendyslexic-italic-webfont.eot",
        "fonts\/opendyslexic-italic-webfont.eot",
        "fonts\/opendyslexic-italic-webfont.woff",
        "fonts\/opendyslexic-italic-webfont.ttf",
        "fonts\/opendyslexic-italic-webfont.svg",
        "fonts\/opendyslexic-bold-webfont.eot",
        "fonts\/opendyslexic-bold-webfont.eot",
        "fonts\/opendyslexic-bold-webfont.woff",
        "fonts\/opendyslexic-bold-webfont.ttf",
        "fonts\/opendyslexic-bold-webfont.svg",
        "fonts\/opendyslexic-bolditalic-webfont.eot",
        "fonts\/opendyslexic-bolditalic-webfont.eot",
        "fonts\/opendyslexic-bolditalic-webfont.woff",
        "fonts\/opendyslexic-bolditalic-webfont.ttf",
        "fonts\/opendyslexic-bolditalic-webfont.svg"
    ]
}