dyslexia simulator
This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.
Wat is dyslexia simulator?
dyslexia simulator is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.".
Extensie Screenshots
Download het CRX-bestand van de extensie dyslexia simulator
Download dyslexia simulator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | kdgccolojenjijefmdmclodecaeiimkl |
| Officiële URL | https://chromewebstore.google.com/detail/dyslexia-simulator/kdgccolojenjijefmdmclodecaeiimkl |
| Beschrijving | This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic. |
| Bestandsgrootte | 47.58 KB |
| Aantal Installaties | 518 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2016-10-14 |
| Publicatiedatum | 2016-10-14 |
| Beoordeling | 4.40/5 Totaal 5 Beoordelingen |
| Ontwikkelaar | Unknown |
| Betalingswijze | free |
| Ondersteunde Talen | 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
}
} | |