Chatgpt assist

No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…

ما هو Chatgpt assist؟

Chatgpt assist هو إضافة Chrome تم تطويرها بواسطة Abu، والميزة الرئيسية لها هي "No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Chatgpt assist

قم بتنزيل ملفات الامتداد Chatgpt assist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing chat-gpt website in opening the replit editor where you can paste the code inside.

More to come:
- Export the conversation in single click.                    

معلومات أساسية عن التمديد

الاسم Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
عنوان URL الرسمي https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
الوصف No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
حجم الملف 790 KB
عدد التثبيتات 1,289
النسخة الحالية 0.0.4
آخر تحديث 2023-02-05
تاريخ النشر 2022-12-07
تقييم 2.33/5 مجموع تقييمات 3
المطور Abu
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://www.claritynotes.io/privacypolicy.html
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.4",
    "short_name": "Chatgpt assist",
    "name": "Chatgpt assist",
    "action": [],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "style.css",
                "modal.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.stackgpt.com\/*"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}