ChatGPT for Google Colab
Embed ChatGPT inside Google Colab.
Qu'est-ce que ChatGPT for Google Colab ?
ChatGPT for Google Colab est une extension Chrome développée par Ali H. Kudeir, et sa fonction principale est "Embed ChatGPT inside Google Colab.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT for Google Colab
Téléchargez les fichiers d'extension ChatGPT for Google Colab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | ChatGPT for Google Colab |
ID | dfhfeifekpgapdlhfakecbbinnnfoohh |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh |
Description | Embed ChatGPT inside Google Colab. |
Taille du Fichier | 183 KB |
Nombre d'Installations | 8,591 |
Version Actuelle | 1.2.3 |
Dernière Mise à Jour | 2023-08-28 |
Date de Publication | 2023-02-09 |
Évaluation | 4.86/5 Total 64 Évaluations |
Développeur | Ali H. Kudeir |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://alihkudeir.com/chatgpt-for-google-colab |
URL de la Page d'Aide | https://twitter.com/ali_h_kudeir |
Langues Prises en Charge | 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" ] } ] } |