AuthorViz

Color coding authors' contributions in a Google Doc

Cos'è AuthorViz?

AuthorViz è un'estensione di Chrome sviluppata da Dakuo Wang, e la sua funzione principale è "Color coding authors' contributions in a Google Doc".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione AuthorViz

Scarica i file di estensione AuthorViz in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AuthorViz AuthorViz
ID hfmcmcphnmeljmpbbkhlfplaoegimepj
URL Ufficiale https://chromewebstore.google.com/detail/authorviz/hfmcmcphnmeljmpbbkhlfplaoegimepj
Descrizione Color coding authors' contributions in a Google Doc
Dimensione del File 120 KB
Conteggio Installazioni 1,000
Versione Corrente 1.40
Ultimo Aggiornamento 2020-07-16
Data di Pubblicazione 2017-03-08
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Dakuo Wang
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://docuviz.ics.uci.edu:4567/
URL della Pagina di Aiuto http://hana.ics.uci.edu/
Lingue Supportate 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"
    ]
}