AuthorViz

Color coding authors' contributions in a Google Doc

Hvad er AuthorViz?

AuthorViz er en Chrome-udvidelse udviklet af Dakuo Wang, og dens hovedfunktion er "Color coding authors' contributions in a Google Doc".

Udvidelsesskærmbilleder

screenshot
screenshot

Download AuthorViz-udvidelses-CRX-fil

Download AuthorViz-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn AuthorViz AuthorViz
ID hfmcmcphnmeljmpbbkhlfplaoegimepj
Officiel URL https://chromewebstore.google.com/detail/authorviz/hfmcmcphnmeljmpbbkhlfplaoegimepj
Beskrivelse Color coding authors' contributions in a Google Doc
Filstørrelse 120 KB
Antal Installationer 1,000
Nuværende Version 1.40
Senest Opdateret 2020-07-16
Udgivelsesdato 2017-03-08
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Dakuo Wang
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://docuviz.ics.uci.edu:4567/
Hjælpeside-URL http://hana.ics.uci.edu/
Understøttede Sprog 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"
    ]
}