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
公式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
Eメール [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"
    }
}