ChatGPT for Google Colab
Embed ChatGPT inside Google Colab.
Что такое ChatGPT for Google Colab?
ChatGPT for Google Colab - это расширение Chrome, разработанное Ali H. Kudeir, и его основная функция - "Embed ChatGPT inside Google Colab.".
Снимки экрана расширения
Скачать файл CRX расширения ChatGPT for Google Colab
Скачайте файлы расширений ChatGPT for Google Colab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | ChatGPT for Google Colab |
ID | dfhfeifekpgapdlhfakecbbinnnfoohh |
Официальный URL | https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh |
Описание | Embed ChatGPT inside Google Colab. |
Размер файла | 183 KB |
Количество установок | 8,591 |
Текущая Версия | 1.2.3 |
Последнее Обновление | 2023-08-28 |
Дата публикации | 2023-02-09 |
Рейтинг | 4.86/5 Всего 64 оценок |
Разработчик | Ali H. Kudeir |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://alihkudeir.com/chatgpt-for-google-colab |
URL страницы помощи | https://twitter.com/ali_h_kudeir |
Поддерживаемые языки | 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" ] } ] } |