dyslexia simulator

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

ما هو dyslexia simulator؟

dyslexia simulator هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة dyslexia simulator

قم بتنزيل ملفات الامتداد dyslexia simulator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
    }
}