ChatGPT for Google Colab

Embed ChatGPT inside Google Colab.

Wat is ChatGPT for Google Colab?

ChatGPT for Google Colab is een Chrome-extensie ontwikkeld door Ali H. Kudeir, en de belangrijkste functie is "Embed ChatGPT inside Google Colab.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie ChatGPT for Google Colab

Download ChatGPT for Google Colab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam ChatGPT for Google Colab ChatGPT for Google Colab
ID dfhfeifekpgapdlhfakecbbinnnfoohh
Officiële URL https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh
Beschrijving Embed ChatGPT inside Google Colab.
Bestandsgrootte 183 KB
Aantal Installaties 8,591
Huidige Versie 1.2.3
Laatst Bijgewerkt 2023-08-28
Publicatiedatum 2023-02-09
Beoordeling 4.86/5 Totaal 64 Beoordelingen
Ontwikkelaar Ali H. Kudeir
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://alihkudeir.com/chatgpt-for-google-colab
Help Pagina-URL https://twitter.com/ali_h_kudeir
Ondersteunde Talen 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"
            ]
        }
    ]
}