OpenDyslexic Font for Chrome

Change the font of web pages to OpenDyslexic Font

OpenDyslexic Font for Chromeคืออะไร?

OpenDyslexic Font for Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย opendyslexicfont และคุณลักษณะหลักของมันคือ "Change the font of web pages to OpenDyslexic Font"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OpenDyslexic Font for Chrome

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

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

                        OpenDyslexic Font Changer is a Chrome extension that makes reading on the web easier for people with dyslexia. By changing the font of web pages to OpenDyslexic, a typeface designed to improve readability for readers with dyslexia, this extension helps to reduce the stress and frustration often associated with reading on the web.

With this extension, you can enable or disable the OpenDyslexic font with a simple toggle switch. You can also select the font style you prefer from a dropdown menu, including regular, bold, and italic.

OpenDyslexic Font Changer works on any website, and you can customize the font settings to your liking. The extension is easy to use and helps make reading on the web more accessible for everyone.

Whether you have dyslexia or just find reading on the web challenging, OpenDyslexic Font Changer can help make the reading experience more comfortable and enjoyable. Try OpenDyslexic Font Changer today and experience the benefits of OpenDyslexic for yourself!                    

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

ชื่อ OpenDyslexic Font for Chrome OpenDyslexic Font for Chrome
ID gcflfnendjincoakmpkdgkocaoojjnbc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/opendyslexic-font-for-chr/gcflfnendjincoakmpkdgkocaoojjnbc
คำอธิบาย Change the font of web pages to OpenDyslexic Font
ขนาดไฟล์ 134 KB
จำนวนการติดตั้ง 728
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-05-02
วันที่เผยแพร่ 2023-05-02
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา opendyslexicfont
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OpenDyslexic Font for Chrome",
    "version": "1.0",
    "description": "Change the font of web pages to OpenDyslexic Font",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon48.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/*.otf"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}