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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | 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" ] } |