AuthorViz
Color coding authors' contributions in a Google Doc
Was ist AuthorViz?
AuthorViz ist eine Chrome-Erweiterung, die von Dakuo Wang entwickelt wurde, und ihr Hauptmerkmal ist "Color coding authors' contributions in a Google Doc".
Erweiterungsscreenshots
AuthorViz-Erweiterungs-CRX-Datei herunterladen
Laden Sie AuthorViz-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | AuthorViz |
ID | hfmcmcphnmeljmpbbkhlfplaoegimepj |
Offizielle URL | https://chromewebstore.google.com/detail/authorviz/hfmcmcphnmeljmpbbkhlfplaoegimepj |
Beschreibung | Color coding authors' contributions in a Google Doc |
Dateigröße | 120 KB |
Installationsanzahl | 1,000 |
Aktuelle Version | 1.40 |
Letztes Update | 2020-07-16 |
Veröffentlichungsdatum | 2017-03-08 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Dakuo Wang |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://docuviz.ics.uci.edu:4567/ |
Hilfeseite URL | http://hana.ics.uci.edu/ |
Unterstützte Sprachen | 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" ] } |