ChatGPT for Google Colab

Embed ChatGPT inside Google Colab.

什麼是ChatGPT for Google Colab?

ChatGPT for Google Colab是由Ali H. Kudeir開發的Chrome擴展程式,該擴展的主要功能是“Embed ChatGPT inside Google Colab.”。

擴展截圖

screenshot
screenshot

下載ChatGPT for Google Colab擴展crx文件

下載ChatGPT for Google Colab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 ChatGPT for Google Colab ChatGPT for Google Colab
ID dfhfeifekpgapdlhfakecbbinnnfoohh
官方網址 https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh
簡介 Embed ChatGPT inside Google Colab.
檔案大小 183 KB
安裝次數 8,591
目前版本 1.2.3
更新時間 2023-08-28
上架時間 2023-02-09
評分 4.86/5 共 64 次評分
開發者 Ali H. Kudeir
電子郵箱 [email protected]
付費類型 free
擴展官網 https://alihkudeir.com/chatgpt-for-google-colab
說明頁面URL https://twitter.com/ali_h_kudeir
支援的語言 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"
            ]
        }
    ]
}