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 |
Eメール | [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" ] } |