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