dyslexia simulator

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

Co to jest dyslexia simulator?

dyslexia simulator to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia dyslexia simulator

Pobierz pliki rozszerzeń dyslexia simulator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa dyslexia simulator dyslexia simulator
ID kdgccolojenjijefmdmclodecaeiimkl
Oficjalny URL https://chromewebstore.google.com/detail/dyslexia-simulator/kdgccolojenjijefmdmclodecaeiimkl
Opis This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.
Rozmiar pliku 47.58 KB
Liczba instalacji 518
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-10-14
Data Publikacji 2016-10-14
Ocena 4.40/5 Łącznie 5 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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
    }
}