ChatGPT for Google Colab
Embed ChatGPT inside Google Colab.
Cos'è ChatGPT for Google Colab?
ChatGPT for Google Colab è un'estensione di Chrome sviluppata da Ali H. Kudeir, e la sua funzione principale è "Embed ChatGPT inside Google Colab.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChatGPT for Google Colab
Scarica i file di estensione ChatGPT for Google Colab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | dfhfeifekpgapdlhfakecbbinnnfoohh |
| URL Ufficiale | https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh |
| Descrizione | Embed ChatGPT inside Google Colab. |
| Dimensione del File | 183 KB |
| Conteggio Installazioni | 8,591 |
| Versione Corrente | 1.2.3 |
| Ultimo Aggiornamento | 2023-08-28 |
| Data di Pubblicazione | 2023-02-09 |
| Valutazione | 4.86/5 Totale 64 Valutazioni |
| Sviluppatore | Ali H. Kudeir |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://alihkudeir.com/chatgpt-for-google-colab |
| URL della Pagina di Aiuto | https://twitter.com/ali_h_kudeir |
| Lingue Supportate | 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"
]
}
]
} | |