dyslexia simulator
This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.
Apa itu dyslexia simulator?
dyslexia simulator adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi dyslexia simulator
Unduh file ekstensi dyslexia simulator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | dyslexia simulator |
ID | kdgccolojenjijefmdmclodecaeiimkl |
URL Resmi | https://chromewebstore.google.com/detail/dyslexia-simulator/kdgccolojenjijefmdmclodecaeiimkl |
Deskripsi | This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic. |
Ukuran File | 47.58 KB |
Jumlah Instalasi | 518 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2016-10-14 |
Tanggal Publikasi | 2016-10-14 |
Penilaian | 4.40/5 Total 5 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } } |