ChatGPT for Google Colab
Embed ChatGPT inside Google Colab.
什么是ChatGPT for Google Colab?
ChatGPT for Google Colab是由Ali H. Kudeir开发的Chrome扩展程序,该扩展的主要功能是“Embed ChatGPT inside Google Colab.”。
扩展截图
下载ChatGPT for Google Colab扩展crx文件
下载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" ] } ] } |