dyslexia simulator
This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.
dyslexia simulator란 무엇입니까?
dyslexia simulator은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic."입니다.
확장 프로그램 스크린샷
dyslexia simulator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | dyslexia simulator |
ID | kdgccolojenjijefmdmclodecaeiimkl |
공식 URL | https://chromewebstore.google.com/detail/dyslexia-simulator/kdgccolojenjijefmdmclodecaeiimkl |
설명 | This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic. |
파일 크기 | 47.58 KB |
설치 횟수 | 518 |
현재 버전 | 1.0 |
최근 업데이트 | 2016-10-14 |
출시 날짜 | 2016-10-14 |
평점 | 4.40/5 총 5 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | 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 } } |