ChatGPT for Google Colab

Embed ChatGPT inside Google Colab.

ChatGPT for Google Colab là gì?

ChatGPT for Google Colab là một tiện ích mở rộng Chrome được phát triển bởi Ali H. Kudeir, và tính năng chính của nó là "Embed ChatGPT inside Google Colab.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT for Google Colab

Tải xuống các tệp mở rộng ChatGPT for Google Colab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT for Google Colab ChatGPT for Google Colab
ID dfhfeifekpgapdlhfakecbbinnnfoohh
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh
Mô tả Embed ChatGPT inside Google Colab.
Kích Thước Tệp 183 KB
Số Lần Cài Đặt 8,591
Phiên Bản Hiện Tại 1.2.3
Cập Nhật Lần Cuối 2023-08-28
Ngày Phát Hành 2023-02-09
Đánh Giá 4.86/5 Tổng số 64 Đánh Giá
Nhà Phát Triển Ali H. Kudeir
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://alihkudeir.com/chatgpt-for-google-colab
URL Trang Trợ Giúp https://twitter.com/ali_h_kudeir
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}