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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}