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 |
官方網址 | 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 } } |