NoteView for Jupyter

Easily share results from your local jupyter notebooks

¿Qué es NoteView for Jupyter?

NoteView for Jupyter es una extensión de Chrome desarrollada por https://noteview.co, y su función principal es "Easily share results from your local jupyter notebooks".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión NoteView for Jupyter

Descarga archivos de extensión NoteView for Jupyter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Easily select the cells you want to highlight, and then convert into a beautiful shareable link for your team and clients (with ability to comment). Become a more productive data scientists and communicate the results of your analysis easily!

No need to spend minutes to copy paste different screenshots - with this extension it takes a minute to create a beautiful report. You can also export as PDF or a PNG to share as a message.

This extension works on any local running Jupyter notebook (with plans to add more support shortly).                    

Información Básica de la Extensión

Nombre NoteView for Jupyter NoteView for Jupyter
ID aahgmjlaldifaebpcnlnifgehafnelbj
URL Oficial https://chromewebstore.google.com/detail/noteview-for-jupyter/aahgmjlaldifaebpcnlnifgehafnelbj
Descripción Easily share results from your local jupyter notebooks
Tamaño del Archivo 237 KB
Cantidad de Instalaciones 138
Versión Actual 0.3
Última Actualización 2020-12-10
Fecha de Publicación 2020-12-09
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://noteview.co
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://noteview.co
Idiomas Soportados en-US
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": {
        "128": "Icon-128.png",
        "48": "Icon-48.png",
        "16": "Icon-16.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';"
}