Jupyter Notifier

Jupyter Notifier

Notifies you when code cells terminate.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Jupyter Notifier",
  "description": "Notifies you when code cells terminate.",
  "version": "0.0.1",
  "permissions": [
    "storage",
    "notifications"
  ],
  "web_accessible_resources": [
    "assets/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "./popup/popup.html",
    "default_title": "jupyter notifier"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "./assets/icons/bell-48px.png",
    "48": "./assets/icons/bell-48px.png",
    "128": "./assets/icons/bell-128px.png"
  }
}