OpenDyslexic Font for Chrome

Change the font of web pages to OpenDyslexic Font

什麼是OpenDyslexic Font for Chrome?

OpenDyslexic Font for Chrome是由opendyslexicfont開發的Chrome擴展程式,該擴展的主要功能是“Change the font of web pages to OpenDyslexic Font”。

擴展截圖

screenshot

下載OpenDyslexic Font for Chrome擴展crx文件

下載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
官方網址 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"
    }
}