DocuViz
Visualize the evolution of authors' contributions in a Google Doc
DocuVizคืออะไร?
DocuViz เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dakuo Wang และคุณลักษณะหลักของมันคือ "Visualize the evolution of authors' contributions in a Google Doc"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DocuViz
ดาวน์โหลดไฟล์ส่วนขยาย DocuViz ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
DocuViz is developed by Hana Research Lab at the University of California, Irvine. It generates the history revision Visualization in a co-authored document on Google Docs. It color codes who edited what, when and where. Time goes from left to right. The darker color columns represent revision content; and the lighter color columns represent the links between columns. Extending the existing Revision-History feature within Google Docs, DocuViz shows the entire history in a historyflow view rather than the one-revision-at-a-time view. It can reveal the evolution of the document and the collaboration patters of co-authors. Dakuo Wang and Jingwen Zhang developed the first version, and Kenny Pham is the primary developer for this plugin. HistoryFlow visualization is invented by Fernanda Viegas and Martin Wattenberg. We also thank James Somers for his advice on getting the accurate data from Google Docs without using the Google API. You can contact Dakuo Wang ([email protected]) for further questions.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | DocuViz |
ID | hbpgkphoidndelcmmiihlmjnnogcnigi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/docuviz/hbpgkphoidndelcmmiihlmjnnogcnigi |
คำอธิบาย | Visualize the evolution of authors' contributions in a Google Doc |
ขนาดไฟล์ | 233 KB |
จำนวนการติดตั้ง | 3,562 |
เวอร์ชันปัจจุบัน | 3.8 |
อัปเดตครั้งล่าสุด | 2020-07-03 |
วันที่เผยแพร่ | 2020-07-02 |
คะแนน | 4.86/5 รวมทั้งหมด 14 คะแนน |
ผู้พัฒนา | Dakuo Wang |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DocuViz", "version": "3.8", "description": "Visualize the evolution of authors' contributions in a Google Doc", "background": { "scripts": [ "js\/lib\/underscore.js", "js\/lib\/jquery.min.js", "js\/lib\/async.js", "js\/model.js", "js\/lib\/d3.min.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/*" ], "css": [ "css\/global.css", "css\/jquery-ui.min.css", "css\/tooltipster.css" ], "js": [ "js\/lib\/underscore.js", "js\/lib\/jquery.min.js", "js\/view.js", "js\/lib\/d3.min.js", "js\/lib\/async.js", "js\/lib\/jquery-ui.min.js", "js\/lib\/jquery.tooltipster.min.js" ] } ], "permissions": [ "activeTab", "*:\/\/docs.google.com\/*" ], "web_accessible_resources": [ "css\/global.css", "js\/lib\/underscore-min.map" ] } |