Topo
Topo generates topographic maps of Wikipedia articles to visualize information depth.
Topoคืออะไร?
Topo เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oeaeee และคุณลักษณะหลักของมันคือ "Topo generates topographic maps of Wikipedia articles to visualize information depth."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Topo
ดาวน์โหลดไฟล์ส่วนขยาย Topo ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Hypertext adds a layer to written language, referencing a depth not captured in 2D. On the web, this depth is captured in hyperlinks. Those links, traditionally blue and underlined, tell us there's more information hidden beneath this part of the text, hinting at important concepts. While printed text requires us to identify significant bits on our own, the hyperlink plainly identifies them. The hyperlink, though, is cognitively blunt—highlighting importance, but not conveying relative importance. Consider a page of a book that's no longer flat, but molded like a raised relief map, with peaks and valleys to convey the amount of background knowledge each word or phrase on the page necessitates. Topo generates topographic maps for Wikipedia content in hopes of providing information depth a more casual visibility.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | igafgpkncbhkkgibhkkfdehoolbigdap |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/topo/igafgpkncbhkkgibhkkfdehoolbigdap |
คำอธิบาย | Topo generates topographic maps of Wikipedia articles to visualize information depth. |
ขนาดไฟล์ | 46.88 KB |
จำนวนการติดตั้ง | 60 |
เวอร์ชันปัจจุบัน | 0.203 |
อัปเดตครั้งล่าสุด | 2015-01-23 |
วันที่เผยแพร่ | 2015-01-23 |
คะแนน | 3.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | oeaeee |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Topo", "version": "0.203", "description": "Topo generates topographic maps of Wikipedia articles to visualize information depth.", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "icon-19.png", "default_title": "Topo" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/en.wikipedia.org\/wiki\/*", "https:\/\/en.wikipedia.org\/wiki\/*", "http:\/\/en.wikipedia.org\/w\/*" ], "exclude_matches": [ "http:\/\/en.wikipedia.org\/wiki\/Main_Page", "http:\/\/en.wikipedia.org\/wiki\/File:*" ], "js": [ "jquery-1.10.2.min.js", "contentscript.js" ], "css": [ "style.css" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "19": "icon-19.png", "48": "icon-48.png", "128": "icon-128.png" }, "manifest_version": 2 } |