DocuViz

Visualize the evolution of authors' contributions in a Google Doc

什么是DocuViz?

DocuViz是由Dakuo Wang开发的Chrome扩展程序,该扩展的主要功能是“Visualize the evolution of authors' contributions in a Google Doc”。

扩展截图

screenshot
screenshot

下载DocuViz扩展crx文件

下载DocuViz扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        DocuViz is developed by Hana Research Lab at the University of California, Irvine. It generates the history revision Visualization in a co-authored document on Google Docs. It color codes who edited what, when and where. Time goes from left to right. The darker color columns represent revision content; and the lighter color columns represent the links between columns. Extending the existing Revision-History feature within Google Docs, DocuViz shows the entire history in a historyflow view rather than the one-revision-at-a-time view. It can reveal the evolution of the document and the collaboration patters of co-authors.

Dakuo Wang and Jingwen Zhang developed the first version, and Kenny Pham is the primary developer for this plugin. HistoryFlow visualization is invented by Fernanda Viegas and Martin Wattenberg. 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.                    

扩展基本信息

名称 DocuViz DocuViz
ID hbpgkphoidndelcmmiihlmjnnogcnigi
官方URL https://chromewebstore.google.com/detail/docuviz/hbpgkphoidndelcmmiihlmjnnogcnigi
简介 Visualize the evolution of authors' contributions in a Google Doc
文件大小 233 KB
安装次数 3,562
当前版本 3.8
更新时间 2020-07-03
上架时间 2020-07-02
评分 4.86/5 共14次评分
开发者 Dakuo Wang
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DocuViz",
    "version": "3.8",
    "description": "Visualize the evolution of 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"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/docs.google.com\/*"
            ],
            "css": [
                "css\/global.css",
                "css\/jquery-ui.min.css",
                "css\/tooltipster.css"
            ],
            "js": [
                "js\/lib\/underscore.js",
                "js\/lib\/jquery.min.js",
                "js\/view.js",
                "js\/lib\/d3.min.js",
                "js\/lib\/async.js",
                "js\/lib\/jquery-ui.min.js",
                "js\/lib\/jquery.tooltipster.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "*:\/\/docs.google.com\/*"
    ],
    "web_accessible_resources": [
        "css\/global.css",
        "js\/lib\/underscore-min.map"
    ]
}