ChatGPT for Google Colab

Embed ChatGPT inside Google Colab.

ChatGPT for Google Colabคืออะไร?

ChatGPT for Google Colab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ali H. Kudeir และคุณลักษณะหลักของมันคือ "Embed ChatGPT inside Google Colab."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT for Google Colab

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
            ]
        }
    ]
}