NoteView for Jupyter

NoteView for Jupyter

Easily share results from your local jupyter notebooks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NoteView for Jupyter",
  "version": "0.3",
  "description": "Easily share results from your local jupyter notebooks",
  "icons": {
    "16": "Icon-16.png",
    "48": "Icon-48.png",
    "128": "Icon-128.png"
  },
  "page_action": {
    "default_icon": "Icon-48.png",
    "default_title": "PageFontStyle"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "content.js",
        "editor.js",
        "editor_inline_code.js",
        "supabase.min.js",
        "html2canvas.min.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "http://localhost/*",
    "https://xrw4xyfdrb.execute-api.us-east-1.amazonaws.com/"
  ],
  "content_security_policy": "script-src 'self' https://w.appzi.io https://cdnjs.cloudflare.com https://stackpath.bootstrapcdn.com/; object-src 'self';"
}