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文件

下载Jupyter Notebook code snippet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": [
        ""
    ]
}