AuthorViz
Color coding authors' contributions in a Google Doc
Τι είναι το AuthorViz;
Το AuthorViz είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dakuo Wang, και η κύρια λειτουργία του είναι "Color coding authors' contributions in a Google Doc".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης AuthorViz
Λήψη αρχείων επέκτασης 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" ] } |