Jupyter Coder

Capture data in Jupyter Notebook cells and send to a remote server.

Jupyter Coder क्या है?

Jupyter Coder jupytercoder0765 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Capture data in Jupyter Notebook cells and send to a remote server."।

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

screenshot

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

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

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

                        When in jupyter notebook, the plugin performs code auto-completion using the starcoder model
Follow https://github.com/bigcode-project/jupytercoder to provide your hf read only api key.
Feel free to contribute !                    

एक्सटेंशन की मूल जानकारी

नाम Jupyter Coder Jupyter Coder
ID kbedojkmlknhepcaggkdimefcbiifkjf
आधिकारिक URL https://chromewebstore.google.com/detail/jupyter-coder/kbedojkmlknhepcaggkdimefcbiifkjf
विवरण Capture data in Jupyter Notebook cells and send to a remote server.
फ़ाइल का आकार 649 KB
स्थापना संख्या 232
वर्तमान संस्करण 0.2.0.0
अंतिम अपडेट 2023-06-12
प्रकाशन तिथि 2023-04-26
डेवलपर jupytercoder0765
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jupyter Coder",
    "version": "0.2.0.0",
    "description": "Capture data in Jupyter Notebook cells and send to a remote server.",
    "icons": {
        "32": "icons\/flow_64.png",
        "48": "icons\/flow_128.png",
        "128": "icons\/flow_256.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "options\/options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/api.js",
                "src\/state.js",
                "src\/preferences.js",
                "src\/utility.js",
                "src\/animation.js",
                "src\/diff.js",
                "src\/content.js"
            ],
            "css": [
                "options\/styles.css"
            ],
            "run_at": "document_end"
        }
    ]
}