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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}