AuthorViz
Color coding authors' contributions in a Google Doc
AuthorViz là gì?
AuthorViz là một tiện ích mở rộng Chrome được phát triển bởi Dakuo Wang, và tính năng chính của nó là "Color coding authors' contributions in a Google Doc".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AuthorViz
Tải xuống các tệp mở rộng AuthorViz dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
AuthorViz is developed by Hana Research Lab at the University of California, Irvine. It visualizes authors' contribution in a co-authored document on Google Docs. It color codes who wrote what within your final revision of the document. Extending the existing Revision-History feature within Google Docs, AuthorViz takes the entire history into account rather than one-revision-at-a-time view. Trung Nguyen is the original developer and Kenny Pham takes it over. 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. If you like it, you may also want to check out DocuViz project at http://docuviz.ics.uci.edu.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AuthorViz |
ID | hfmcmcphnmeljmpbbkhlfplaoegimepj |
URL Chính Thức | https://chromewebstore.google.com/detail/authorviz/hfmcmcphnmeljmpbbkhlfplaoegimepj |
Mô tả | Color coding authors' contributions in a Google Doc |
Kích Thước Tệp | 120 KB |
Số Lần Cài Đặt | 1,000 |
Phiên Bản Hiện Tại | 1.40 |
Cập Nhật Lần Cuối | 2020-07-16 |
Ngày Phát Hành | 2017-03-08 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Dakuo Wang |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://docuviz.ics.uci.edu:4567/ |
URL Trang Trợ Giúp | http://hana.ics.uci.edu/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AuthorViz", "version": "1.40", "description": "Color coding 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" ] }, "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/*" ], "css": [ "css\/global.css" ], "js": [ "js\/lib\/underscore.js", "js\/lib\/jquery.min.js", "js\/view.js", "js\/lib\/d3.min.js" ] } ], "permissions": [ "activeTab", "*:\/\/docs.google.com\/*" ], "web_accessible_resources": [ "css\/global.css", "js\/lib\/underscore-min.map" ] } |