dyslexia simulator
This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.
Was ist dyslexia simulator?
dyslexia simulator ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.".
Erweiterungsscreenshots
dyslexia simulator-Erweiterungs-CRX-Datei herunterladen
Laden Sie dyslexia simulator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | dyslexia simulator |
ID | kdgccolojenjijefmdmclodecaeiimkl |
Offizielle URL | https://chromewebstore.google.com/detail/dyslexia-simulator/kdgccolojenjijefmdmclodecaeiimkl |
Beschreibung | This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic. |
Dateigröße | 47.58 KB |
Installationsanzahl | 518 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-10-14 |
Veröffentlichungsdatum | 2016-10-14 |
Bewertung | 4.40/5 Insgesamt 5 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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 } } |