ChatGPT for Google Colab
Embed ChatGPT inside Google Colab.
Apa itu ChatGPT for Google Colab?
ChatGPT for Google Colab adalah ekstensi Chrome yang dikembangkan oleh Ali H. Kudeir, dan fitur utamanya adalah "Embed ChatGPT inside Google Colab.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ChatGPT for Google Colab
Unduh file ekstensi ChatGPT for Google Colab dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | ChatGPT for Google Colab |
ID | dfhfeifekpgapdlhfakecbbinnnfoohh |
URL Resmi | https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh |
Deskripsi | Embed ChatGPT inside Google Colab. |
Ukuran File | 183 KB |
Jumlah Instalasi | 8,591 |
Versi Saat Ini | 1.2.3 |
Terakhir Diperbarui | 2023-08-28 |
Tanggal Publikasi | 2023-02-09 |
Penilaian | 4.86/5 Total 64 Penilaian |
Pengembang | Ali H. Kudeir |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://alihkudeir.com/chatgpt-for-google-colab |
URL Halaman Bantuan | https://twitter.com/ali_h_kudeir |
Bahasa yang Didukung | 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" ] } ] } |