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 |
Eメール | [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" ] } ] } |