Visual Python for Colab

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

Visual Python for Colab là gì?

Visual Python for Colab là một tiện ích mở rộng Chrome được phát triển bởi blacklogic.dev, và tính năng chính của nó là "GUI-based Python code generator for Google Colab as an extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Visual Python for Colab

Tải xuống các tệp mở rộng Visual Python for Colab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Visual Python for Colab Visual Python for Colab
ID ccmkpknjfagaldcgidgcipbpdipfopob
URL Chính Thức https://chromewebstore.google.com/detail/visual-python-for-colab/ccmkpknjfagaldcgidgcipbpdipfopob
Mô tả GUI-based Python code generator for Google Colab as an extension
Kích Thước Tệp 14.79 MB
Số Lần Cài Đặt 4,073
Phiên Bản Hiện Tại 3.0.1
Cập Nhật Lần Cuối 2023-11-17
Ngày Phát Hành 2022-08-30
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển blacklogic.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://visualpython.ai
URL Trang Trợ Giúp https://github.com/visualpython/visualpython
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}