NoteView for Jupyter

Easily share results from your local jupyter notebooks

NoteView for Jupyter क्या है?

NoteView for Jupyter https://noteview.co द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily share results from your local jupyter notebooks"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NoteView for Jupyter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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';"
}