Dyslexia Friendly

Increases readability of websites by changing to easier-to-read fonts and adding visual enhancements

Dyslexia Friendly란 무엇입니까?

Dyslexia Friendly은(는) javoire에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Increases readability of websites by changing to easier-to-read fonts and adding visual enhancements"입니다.

확장 프로그램 스크린샷

screenshot

Dyslexia Friendly 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A simple-to-use open source dyslexia reader helper extension.

Features:
✔ Change the font on websites to either OpenDyslexic or Comic Sans.
✔ Contrast between paragraphs of text is enhanced with different background color for even and odd paragraphs.
✔ Reading-ruler following the mouse cursor.

The above settings can be be configured to preference.

Feel free to leave a comment about your experience and how this could be further improved.

This extension is open-source and the source code can be found at: https://github.com/javoire/dyslexia-friendly                    

확장 프로그램 기본 정보

이름 Dyslexia Friendly Dyslexia Friendly
ID miepjgfkkommhllbbjaedffcpkncboeo
공식 URL https://chromewebstore.google.com/detail/dyslexia-friendly/miepjgfkkommhllbbjaedffcpkncboeo
설명 Increases readability of websites by changing to easier-to-read fonts and adding visual enhancements
파일 크기 689 KB
설치 횟수 11,585
현재 버전 1.0.3
최근 업데이트 2022-03-03
출시 날짜 2019-12-22
평점 4.18/5 총 22 개의 평점
개발자 javoire
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Increases readability of websites by changing to easier-to-read fonts and adding visual enhancements",
    "version": "1.0.3",
    "name": "Dyslexia Friendly",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon-16.png",
        "128": "img\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Make the website dyslexia friendly",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/fonts.css",
                "css\/contentscript.css"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "permissions": [
        "background",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "fonts\/opendyslexic-regular-webfont.eot",
        "fonts\/opendyslexic-regular-webfont.eot",
        "fonts\/opendyslexic-regular-webfont.woff",
        "fonts\/opendyslexic-regular-webfont.ttf",
        "fonts\/opendyslexic-regular-webfont.svg",
        "fonts\/opendyslexic-italic-webfont.eot",
        "fonts\/opendyslexic-italic-webfont.eot",
        "fonts\/opendyslexic-italic-webfont.woff",
        "fonts\/opendyslexic-italic-webfont.ttf",
        "fonts\/opendyslexic-italic-webfont.svg",
        "fonts\/opendyslexic-bold-webfont.eot",
        "fonts\/opendyslexic-bold-webfont.eot",
        "fonts\/opendyslexic-bold-webfont.woff",
        "fonts\/opendyslexic-bold-webfont.ttf",
        "fonts\/opendyslexic-bold-webfont.svg",
        "fonts\/opendyslexic-bolditalic-webfont.eot",
        "fonts\/opendyslexic-bolditalic-webfont.eot",
        "fonts\/opendyslexic-bolditalic-webfont.woff",
        "fonts\/opendyslexic-bolditalic-webfont.ttf",
        "fonts\/opendyslexic-bolditalic-webfont.svg"
    ]
}