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