Visual Python for Colab

GUI-based Python code generator for Google Colab as an extension

什么是Visual Python for Colab?

Visual Python for Colab是由blacklogic.dev开发的Chrome扩展程序,该扩展的主要功能是“GUI-based Python code generator for Google Colab as an extension”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Visual Python for Colab扩展crx文件

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

扩展使用说明

                        Visual Python is a GUI-based Python code generator for Google Colab as an extension.
Visual Python is an open source project started for students who struggle with coding during Python classes for data science.                    

扩展基本信息

名称 Visual Python for Colab Visual Python for Colab
ID ccmkpknjfagaldcgidgcipbpdipfopob
官方URL https://chromewebstore.google.com/detail/visual-python-for-colab/ccmkpknjfagaldcgidgcipbpdipfopob
简介 GUI-based Python code generator for Google Colab as an extension
文件大小 14.79 MB
安装次数 4,073
当前版本 3.0.1
更新时间 2023-11-17
上架时间 2022-08-30
评分 5.00/5 共7次评分
开发者 blacklogic.dev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://visualpython.ai
帮助页面URL https://github.com/visualpython/visualpython
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Visual Python for Colab",
    "description": "GUI-based Python code generator for Google Colab as an extension",
    "version": "3.0.1",
    "manifest_version": 3,
    "icons": {
        "48": "icon.png",
        "128": "icon128.png"
    },
    "action": {
        "default_title": "Visual Python for Colab\n\nGUI-based Python code generator.\nClick icon to enable.",
        "default_icon": {
            "48": "icon.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon.png",
                "icon128.png",
                "icon-disable.png",
                "inject.js",
                "visualpython\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}