ChatGPT for Google Colab

Embed ChatGPT inside Google Colab.

What is ChatGPT for Google Colab?

ChatGPT for Google Colab is a Chrome extension developed by Ali H. Kudeir, and its main feature is "Embed ChatGPT inside Google Colab.".

Extension Screenshots

screenshot
screenshot

Download ChatGPT for Google Colab Extension CRX File

Download ChatGPT for Google Colab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name ChatGPT for Google Colab ChatGPT for Google Colab
ID dfhfeifekpgapdlhfakecbbinnnfoohh
Official URL https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh
Description Embed ChatGPT inside Google Colab.
File Size 183 KB
Installation Count 8,591
Current Version 1.2.3
Last Updated 2023-08-28
Publish Date 2023-02-09
Rating 4.86/5 Total 64 Ratings
Developer Ali H. Kudeir
Email [email protected]
Payment Type free
Extension Website https://alihkudeir.com/chatgpt-for-google-colab
Help Page URL https://twitter.com/ali_h_kudeir
Supported Languages 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"
            ]
        }
    ]
}