Skim
Skim modifies the way words are displayed in NYT articles. It hopes to investigate if obscuring characters can enhance reading.
Skimคืออะไร?
Skim เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oeaeee และคุณลักษณะหลักของมันคือ "Skim modifies the way words are displayed in NYT articles. It hopes to investigate if obscuring characters can enhance reading."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Skim
ดาวน์โหลดไฟล์ส่วนขยาย Skim ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Studies suggest humans can read pretty well even when many characters in a word have been modified. Some studies imply that if the first and last letters of a word are kept intact, the rest can be scrambled without much loss in legibility. Others say we read based on the shapes of whole words rather than letters. Skim is a quick prototype to investigate these ideas. It provides three ways to view New York Times articles: (1) DISEMVOWEL - where vowels are removed, (2) SCRAMBLE - where interior letters are shuffled, (3) SHAPES - where interior letters are masked to show only their ascenders and descender. Skim was built in a day and is imperfect. While it’s intentional that words with three or fewer characters are not modified, things like punctuation were left unaccounted for due to time constraints. If you’d like to build off of this project, it’s available on Github (https://github.com/oeaeee/skim).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Skim |
ID | ooebdnkfnegjknekehpfpjabmkkomejk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/skim/ooebdnkfnegjknekehpfpjabmkkomejk |
คำอธิบาย | Skim modifies the way words are displayed in NYT articles. It hopes to investigate if obscuring characters can enhance reading. |
ขนาดไฟล์ | 73.08 KB |
จำนวนการติดตั้ง | 17 |
เวอร์ชันปัจจุบัน | 0.2.2 |
อัปเดตครั้งล่าสุด | 2014-06-29 |
วันที่เผยแพร่ | 2014-06-28 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | oeaeee |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/oeaeee/skim |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Skim", "description": "Skim modifies the way words are displayed in NYT articles. It hopes to investigate if obscuring characters can enhance reading.", "version": "0.2.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "icon-19.png" }, "content_scripts": [ { "matches": [ "*:\/\/nytimes.com\/*", "*:\/\/www.nytimes.com\/*", "*:\/\/nyt.com\/*", "*:\/\/www.nyt.com\/*" ], "exclude_matches": [ "*:\/\/www.nytimes.com\/", "*:\/\/www.nyt.com\/" ], "js": [ "jquery-1.10.2.min.js", "sugar.min.js", "contentscript.js" ], "css": [ "style.css" ], "run_at": "document_idle", "all_frames": false } ], "web_accessible_resources": [ "images\/*.png" ], "icons": { "19": "icon-19.png", "48": "icon-48.png", "128": "icon-128.png" }, "manifest_version": 2 } |