Dyslexia Formatter

WIP Extension that will make browsing the internet easier for dyslexic people.

Dyslexia Formatter란 무엇입니까?

Dyslexia Formatter은(는) dyslexiaformatter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "WIP Extension that will make browsing the internet easier for dyslexic people."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Dyslexia Formatter is a Chrome Extension meant to stylize websites in a way that will make it easier to read for people affected by dyslexia. Due to the majority of websites’ usage of serif fonts, it is harder for dyslexic people to read these sites. This small extension hopes to style the text and background color, using sans-serif fonts to replace the standard fonts websites use in order to increase accessibility for these users, to their preference. 

With the press of the tilde (~) key you will have the ability to select portions of the website that you wish to format. 

Change the stylings that you wish to use, in the forms of text, background color, overlay, and paragraph spacing. 

Any text that is still hard to read can be read using the speech synthesizer included.

Usage-
Upon installation:
* Go to any website and press the tilde (~) key. 
* Press the backslash (\) key to enable and disable the overlay
* Hover your mouse over any section you wish to change (it will be highlighted), and upon clicking said section, the selected stylistic changes will be applied. 
* Click on the same section again in order to revert the changes.

Enabling the text-to-speech feature:
* Text-to-speech while changing other user options requires you to open the popup set on your extension bar. 
* Once any of these settings are changed you must save them and refresh your web page in order for them to take effect.
* Simply highlight any text that you wish to be spoken and press the forward slash (/) key to enable or disable
* The highlighted text will then be spoken with the user's desired settings.                    

확장 프로그램 기본 정보

이름 Dyslexia Formatter Dyslexia Formatter
ID kggkghfhlppjclojgphbploiaipgogoc
공식 URL https://chrome.google.com/webstore/detail/dyslexia-formatter/kggkghfhlppjclojgphbploiaipgogoc
설명 WIP Extension that will make browsing the internet easier for dyslexic people.
파일 크기 2.58 MB
설치 횟수 3,000
현재 버전 0.0.0.6
최근 업데이트 2017-04-06
출시 날짜 2017-04-06
평점 4.33/5 총 6 개의 평점
개발자 dyslexiaformatter
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dyslexia Formatter",
    "short_name": "dysfrm",
    "description": "WIP Extension that will make browsing the internet easier for dyslexic people.",
    "version": "0.0.0.6",
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "browser_action": {
        "default_title": "Dyslexia Formatter. ~ to Activate\/Deactivate.",
        "default_icon": {
            "16": "icon_16.png",
            "48": "icon_48.png",
            "128": "icon_128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "core.css"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "minicolors\/jquery.minicolors.min.js",
                "core.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "web_accessible_resources": [
        "*.ttf"
    ],
    "manifest_version": 2
}