NoteView for Jupyter

Easily share results from your local jupyter notebooks

Что такое NoteView for Jupyter?

NoteView for Jupyter - это расширение Chrome, разработанное https://noteview.co, и его основная функция - "Easily share results from your local jupyter notebooks".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения NoteView for Jupyter

Скачайте файлы расширений NoteView for Jupyter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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).                    

Основная информация о расширении

Название NoteView for Jupyter NoteView for Jupyter
ID aahgmjlaldifaebpcnlnifgehafnelbj
Официальный URL https://chromewebstore.google.com/detail/noteview-for-jupyter/aahgmjlaldifaebpcnlnifgehafnelbj
Описание Easily share results from your local jupyter notebooks
Размер файла 237 KB
Количество установок 138
Текущая Версия 0.3
Последнее Обновление 2020-12-10
Дата публикации 2020-12-09
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://noteview.co
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://noteview.co
Поддерживаемые языки 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';"
}