Lexia

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

Lexia là gì?

Lexia là một tiện ích mở rộng Chrome được phát triển bởi Louis Barrette-Vanasse, và tính năng chính của nó là "This extension converts a page's font to one that is dyslexia-friendly.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lexia

Tải xuống các tệp mở rộng Lexia dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lexia Lexia
ID bckbamamdifihbgajhgnfnpkcnieinmi
URL Chính Thức https://chromewebstore.google.com/detail/lexia/bckbamamdifihbgajhgnfnpkcnieinmi
Mô tả This extension converts a page's font to one that is dyslexia-friendly.
Kích Thước Tệp 15.8 KB
Số Lần Cài Đặt 144
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-07-20
Ngày Phát Hành 2020-07-19
Nhà Phát Triển Louis Barrette-Vanasse
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Louismousine/lexia
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}