dyslexia simulator
This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.
dyslexia simulator là gì?
dyslexia simulator là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng dyslexia simulator
Tải xuống các tệp mở rộng dyslexia simulator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | dyslexia simulator |
ID | kdgccolojenjijefmdmclodecaeiimkl |
URL Chính Thức | https://chromewebstore.google.com/detail/dyslexia-simulator/kdgccolojenjijefmdmclodecaeiimkl |
Mô tả | This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic. |
Kích Thước Tệp | 47.58 KB |
Số Lần Cài Đặt | 518 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-10-14 |
Ngày Phát Hành | 2016-10-14 |
Đánh Giá | 4.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |