AuthorViz
Color coding authors' contributions in a Google Doc
AuthorViz란 무엇입니까?
AuthorViz은(는) Dakuo Wang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Color coding authors' contributions in a Google Doc"입니다.
확장 프로그램 스크린샷
AuthorViz 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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/ |
도움말 페이지 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" ] } |