dyslexia simulator

This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.

dyslexia simulator क्या है?

dyslexia simulator Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic."।

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

screenshot
screenshot

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

crx प्रारूप में dyslexia simulator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        There are options to change the chance of words being shuffled as well as how often a piece of text is evaluated. Huge inspiration was taken from geon's dyslexia page: https://geon.github.io/programming/2016/03/03/dsxyliea                    

एक्सटेंशन की मूल जानकारी

नाम dyslexia simulator dyslexia simulator
ID kdgccolojenjijefmdmclodecaeiimkl
आधिकारिक URL https://chromewebstore.google.com/detail/dyslexia-simulator/kdgccolojenjijefmdmclodecaeiimkl
विवरण This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.
फ़ाइल का आकार 47.58 KB
स्थापना संख्या 518
वर्तमान संस्करण 1.0
अंतिम अपडेट 2016-10-14
प्रकाशन तिथि 2016-10-14
रेटिंग 4.40/5 कुल 5 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "dyslexia simulator",
    "version": "1.0",
    "description": "This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.",
    "browser_action": {
        "default_icon": {
            "19": "assests\/img\/icon_19.png",
            "38": "assests\/img\/icon_38.png"
        },
        "default_title": "Dyslexia Simulator",
        "default_popup": "assests\/html\/options.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_globs": [
                "*google*"
            ],
            "js": [
                "assests\/js\/jquery-3.1.1.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "assests\/html\/options.html",
        "chrome_style": true
    }
}