Examine source code of Colab Notifier

Inspect and view changes in Colab Notifier 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": "Colab Notifier",
  "description": "Notifies you when longer running code cells are finished",
  "version": "1.2",
  "permissions": [
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://colab.research.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "./popup/popup.html",
    "default_title": "colab notifier"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "./assets/icons/icon-16px.png",
    "48": "./assets/icons/icon-48px.png",
    "128": "./assets/icons/icon-128px.png"
  },
  "web_accessible_resources": [
    "./assets/icons/timer-24px.svg"
  ]
}