Examine source code of AuthorViz

Inspect and view changes in AuthorViz source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
  ]
}