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ファイルをダウンロード

Dyslexia word highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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