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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension tries to help people to read better by higlighting the words."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Dyslexia word highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}