Lexia

This extension converts a page's font to one that is dyslexia-friendly.

什么是Lexia?

Lexia是由Louis Barrette-Vanasse开发的Chrome扩展程序,该扩展的主要功能是“This extension converts a page's font to one that is dyslexia-friendly.”。

扩展截图

screenshot

下载Lexia扩展crx文件

下载Lexia扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Dyslexia is a disorder that affects one's ability to read. An estimated 10% of people have this disability.

A study (http://dyslexiahelp.umich.edu/sites/default/files/good_fonts_for_dyslexia_study.pdf) has found that some fonts significantly aid readability for people with dyslexia. The researchers cited Helvetica, Verdana, Arial, CMU and Courier as the best fonts to improve readability.

Aside from Arial, these fonts are rarely used in website designs. To address this, lexia offers users the possibility to change the font of a webpage to one of the aforementioned fonts. As a Chrome extension, it is non-intrusive, and it helps improving users' experience browsing the web.                    

扩展基本信息

名称 Lexia Lexia
ID bckbamamdifihbgajhgnfnpkcnieinmi
官方URL https://chromewebstore.google.com/detail/lexia/bckbamamdifihbgajhgnfnpkcnieinmi
简介 This extension converts a page's font to one that is dyslexia-friendly.
文件大小 15.8 KB
安装次数 144
当前版本 1.0
更新时间 2020-07-20
上架时间 2020-07-19
开发者 Louis Barrette-Vanasse
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Louismousine/lexia
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lexia",
    "version": "1.0",
    "manifest_version": 2,
    "description": "This extension converts a page's font to one that is dyslexia-friendly.",
    "homepage_url": "https:\/\/github.com\/Louismousine\/lexia",
    "icons": {
        "128": "icons\/logo.png"
    },
    "browser_action": {
        "default_icon": "icons\/logo.png",
        "default_popup": "page_action.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js",
                "popup.js"
            ]
        }
    ]
}