AuthorViz
Color coding authors' contributions in a Google Doc
什么是AuthorViz?
AuthorViz是由Dakuo Wang开发的Chrome扩展程序,该扩展的主要功能是“Color coding authors' contributions in a Google Doc”。
扩展截图
下载AuthorViz扩展crx文件
下载AuthorViz扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | AuthorViz |
ID | hfmcmcphnmeljmpbbkhlfplaoegimepj |
官方URL | https://chromewebstore.google.com/detail/authorviz/hfmcmcphnmeljmpbbkhlfplaoegimepj |
简介 | Color coding authors' contributions in a Google Doc |
文件大小 | 120 KB |
安装次数 | 1,000 |
当前版本 | 1.40 |
更新时间 | 2020-07-16 |
上架时间 | 2017-03-08 |
评分 | 5.00/5 共2次评分 |
开发者 | Dakuo Wang |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://docuviz.ics.uci.edu:4567/ |
帮助页面URL | http://hana.ics.uci.edu/ |
支持的语言 | 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" ] } |