Dyslexia word highlighter

This extension tries to help people to read better by higlighting the words.

Dyslexia word highlighter란 무엇입니까?

Dyslexia word highlighter은(는) http://www.doart3.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension tries to help people to read better by higlighting the words."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Extension to allow users to read better by highlighting the words under the mouse.

This is my first version, and a very  simple one, it will get better with time hopefully. All feedback is welcome :)                    

확장 프로그램 기본 정보

이름 Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
공식 URL https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
설명 This extension tries to help people to read better by higlighting the words.
파일 크기 54.94 KB
설치 횟수 388
현재 버전 1.1
최근 업데이트 2014-11-26
출시 날짜 2014-11-26
평점 3.00/5 총 1 개의 평점
개발자 http://www.doart3.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/daragao/dyslexicHighlighter
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dyslexia word highlighter",
    "description": "This extension tries to help people to read better by higlighting the words.",
    "version": "1.1",
    "permissions": [
        "input",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "libs\/jquery.min.js",
                "libs\/underscore-min.js",
                "src\/js\/scriptAux.js"
            ],
            "css": [
                "src\/css\/dyslexia.css"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "src\/html\/options.html",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon64.png",
        "default_title": "Chrome Extension test"
    }
}