ChatGPT for Google Colab

Embed ChatGPT inside Google Colab.

Co to jest ChatGPT for Google Colab?

ChatGPT for Google Colab to rozszerzenie Chrome opracowane przez Ali H. Kudeir, a jego główną funkcją jest „Embed ChatGPT inside Google Colab.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia ChatGPT for Google Colab

Pobierz pliki rozszerzeń ChatGPT for Google Colab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT for Google Colab ChatGPT for Google Colab
ID dfhfeifekpgapdlhfakecbbinnnfoohh
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh
Opis Embed ChatGPT inside Google Colab.
Rozmiar pliku 183 KB
Liczba instalacji 8,591
Aktualna Wersja 1.2.3
Ostatnia Aktualizacja 2023-08-28
Data Publikacji 2023-02-09
Ocena 4.86/5 Łącznie 64 Oceny
Deweloper Ali H. Kudeir
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://alihkudeir.com/chatgpt-for-google-colab
Adres URL Strony Pomocy https://twitter.com/ali_h_kudeir
Obsługiwane Języki 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"
            ]
        }
    ]
}