DocuViz

DocuViz

Visualize the evolution of authors' contributions in a Google Doc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DocuViz",
  "version": "3.8",
  "description": "Visualize the evolution of 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"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/*"
      ],
      "css": [
        "css/global.css",
        "css/jquery-ui.min.css",
        "css/tooltipster.css"
      ],
      "js": [
        "js/lib/underscore.js",
        "js/lib/jquery.min.js",
        "js/view.js",
        "js/lib/d3.min.js",
        "js/lib/async.js",
        "js/lib/jquery-ui.min.js",
        "js/lib/jquery.tooltipster.min.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "*://docs.google.com/*"
  ],
  "web_accessible_resources": [
    "css/global.css",
    "js/lib/underscore-min.map"
  ]
}