AuthorViz

Color coding authors' contributions in a Google Doc

AuthorViz क्या है?

AuthorViz Dakuo Wang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Color coding authors' contributions in a Google Doc"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AuthorViz एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}