Jupyter Coder

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

Jupyter Coder란 무엇입니까?

Jupyter Coder은(는) jupytercoder0765에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Capture data in Jupyter Notebook cells and send to a remote server."입니다.

확장 프로그램 스크린샷

screenshot

Jupyter Coder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}