Visual Python for Colab

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

Was ist Visual Python for Colab?

Visual Python for Colab ist eine Chrome-Erweiterung, die von blacklogic.dev entwickelt wurde, und ihr Hauptmerkmal ist "GUI-based Python code generator for Google Colab as an extension".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Visual Python for Colab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Visual Python for Colab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Visual Python for Colab Visual Python for Colab
ID ccmkpknjfagaldcgidgcipbpdipfopob
Offizielle URL https://chromewebstore.google.com/detail/visual-python-for-colab/ccmkpknjfagaldcgidgcipbpdipfopob
Beschreibung GUI-based Python code generator for Google Colab as an extension
Dateigröße 14.79 MB
Installationsanzahl 4,073
Aktuelle Version 3.0.1
Letztes Update 2023-11-17
Veröffentlichungsdatum 2022-08-30
Bewertung 5.00/5 Insgesamt 7 Bewertungen
Entwickler blacklogic.dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://visualpython.ai
Hilfeseite URL https://github.com/visualpython/visualpython
Unterstützte Sprachen 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"
    }
}