ChatGPT for Google Colab
Embed ChatGPT inside Google Colab.
Was ist ChatGPT for Google Colab?
ChatGPT for Google Colab ist eine Chrome-Erweiterung, die von Ali H. Kudeir entwickelt wurde, und ihr Hauptmerkmal ist "Embed ChatGPT inside Google Colab.".
Erweiterungsscreenshots
ChatGPT for Google Colab-Erweiterungs-CRX-Datei herunterladen
Laden Sie ChatGPT for Google 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
This open-source extension provides a user-friendly interface to interact with ChatGPT inside Google Colab. Interact with ChatGPT inside each code cell and save time and effort learning, fixing, and improving your Jupyter notebooks. Features: * Free * Markdown rendering * Dark, and Light mode * Copy to clipboard * All features supported by your ChatGPT account. * Pre-made prompts for code fixing, refactoring, summarizing, explaining, and adding comments. * Adapting to newly added code cells. Source code: https://github.com/ali-h-kudeir/chatgpt-google-colab
Grundlegende Informationen zur Erweiterung
Name | ChatGPT for Google Colab |
ID | dfhfeifekpgapdlhfakecbbinnnfoohh |
Offizielle URL | https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh |
Beschreibung | Embed ChatGPT inside Google Colab. |
Dateigröße | 183 KB |
Installationsanzahl | 8,591 |
Aktuelle Version | 1.2.3 |
Letztes Update | 2023-08-28 |
Veröffentlichungsdatum | 2023-02-09 |
Bewertung | 4.86/5 Insgesamt 64 Bewertungen |
Entwickler | Ali H. Kudeir |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://alihkudeir.com/chatgpt-for-google-colab |
Hilfeseite URL | https://twitter.com/ali_h_kudeir |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.2.3", "manifest_version": 3, "icons": { "16": "logo.png", "32": "logo.png", "48": "logo.png", "128": "logo.png" }, "host_permissions": [ "https:\/\/*.openai.com\/" ], "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": [], "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "https:\/\/colab.research.google.com\/*", "https:\/\/github.com\/*" ], "js": [ "content-script.js" ], "css": [ "content-script.css" ] } ] } |