Examine source code of Google Drive Notifications

Inspect and view changes in Google Drive Notifications 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": "Google Drive Notifications",
  "short_name": "Google Drive",
  "description": "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.",
  "version": "2.2",
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/document/d/*"
      ],
      "js": [
        "jquery-2.1.4.js",
        "ContentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "drive1.png",
    "default_popup": "popup.html",
    "default_title": ""
  },
  "background": {
    "scripts": [
      "jquery-2.1.4.js",
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "https://ajax.googleapis.com/",
    "https://docs.google.com/document/d/*"
  ]
}