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
电子邮箱 [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"
    }
}