Jupyter Notebook code snippet

Jupyter Notebook code snippet chrome extension

Jupyter Notebook code snippet란 무엇입니까?

Jupyter Notebook code snippet은(는) maolingzhi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Jupyter Notebook code snippet chrome extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Jupyter Notebook code snippet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Jupyter NoteBook enhanced extension,sync snippet on cloud,never lost,quickly find snippet code on draggable menu,click it insert snippet code to new cell.                    

확장 프로그램 기본 정보

이름 Jupyter Notebook code snippet Jupyter Notebook code snippet
ID bmpkgdebaeakonmaccemlpeebdmflcop
공식 URL https://chrome.google.com/webstore/detail/jupyter-notebook-code-sni/bmpkgdebaeakonmaccemlpeebdmflcop
설명 Jupyter Notebook code snippet chrome extension
파일 크기 527 KB
설치 횟수 1,210
현재 버전 3.7
최근 업데이트 2023-02-14
출시 날짜 2020-08-20
개발자 maolingzhi
이메일 [email protected]
결제 유형 in_app
도움말 페이지 URL https://github.com/mlzboy/jupyter_chrome_extension/issues
개인정보 보호 정책 페이지 URL https://mlzboy.github.io/jupyter_chrome_extension/privacy_policy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jupyter Notebook code snippet",
    "version": "3.7",
    "description": "Jupyter Notebook code snippet chrome extension",
    "author": "lexus",
    "icons": {
        "48": "jupyter.png",
        "16": "jupyter.png",
        "128": "jupyter.png"
    },
    "action": {
        "default_icon": "jupyter.png",
        "default_popup": "z.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "jquery-ui.css"
            ],
            "js": [
                "jquery.js",
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "hot-reload.js",
                "jquery.nodom.js",
                "background.js",
                "jquery-ui.css",
                "jquery-ui.js",
                "jquery.js",
                "content-script.js",
                "z.css",
                "a.js",
                "images\/ui-icons_ffffff_256x240.png",
                "images\/ui-icons_444444_256x240.png",
                "images\/ui-icons_555555_256x240.png",
                "z.html",
                "z.js",
                "re_a.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ]
}