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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    }
}