AuthorViz

Color coding authors' contributions in a Google Doc

什麼是AuthorViz?

AuthorViz是由Dakuo Wang開發的Chrome擴展程式,該擴展的主要功能是“Color coding authors' contributions in a Google Doc”。

擴展截圖

screenshot
screenshot

下載AuthorViz擴展crx文件

下載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 AuthorViz
ID hfmcmcphnmeljmpbbkhlfplaoegimepj
官方網址 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"
    ]
}