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ファイルをダウンロード
dyslexia simulator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 } } |