Dyslexia word highlighter

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

Dyslexia word highlighter là gì?

Dyslexia word highlighter là một tiện ích mở rộng Chrome được phát triển bởi http://www.doart3.com, và tính năng chính của nó là "This extension tries to help people to read better by higlighting the words.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dyslexia word highlighter

Tải xuống các tệp mở rộng Dyslexia word highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dyslexia word highlighter Dyslexia word highlighter
ID nhofjlfcphdefjijmbdcjpaodgdhdpoa
URL Chính Thức https://chrome.google.com/webstore/detail/dyslexia-word-highlighter/nhofjlfcphdefjijmbdcjpaodgdhdpoa
Mô tả This extension tries to help people to read better by higlighting the words.
Kích Thước Tệp 54.94 KB
Số Lần Cài Đặt 388
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2014-11-26
Ngày Phát Hành 2014-11-26
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://www.doart3.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/daragao/dyslexicHighlighter
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}