Jupyter Versioning & Comments - by Curvenote

Jupyter Versioning & Comments - by Curvenote

Add comments, cell and notebook versioning and real-time collaboration to JupyterLab and Notebooks, provided by curvenote.com

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 Versioning & Comments - by Curvenote",
  "version": "1.5.2",
  "description": "Add comments, cell and notebook versioning and real-time collaboration to JupyterLab and Notebooks, provided by curvenote.com",
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js",
        "0.js",
        "1.js",
        "2.js",
        "3.js",
        "4.js",
        "5.js",
        "6.js"
      ],
      "matches": [
        "http://*/*lab*",
        "https://*/*lab*",
        "http://*/*notebooks*",
        "https://*/*notebooks*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://*.googleapis.com https://apis.google.com; object-src 'self'",
  "externally_connectable": {
    "matches": [
      "*://*.googleapis.com/*"
    ]
  },
  "author": "Curvenote",
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  }
}