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