ScrAIbe

A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT

ما هو ScrAIbe؟

ScrAIbe هو إضافة Chrome تم تطويرها بواسطة gastonmaffei، والميزة الرئيسية لها هي "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT".

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

screenshot

تحميل ملف CRX للإضافة ScrAIbe

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

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

                        ScrAIbe is a Chrome extension that helps users write better emails using the power of GPT-3. With ScrAIbe, you can generate a response to an email based on the previous conversation and your instructions, allowing you to write emails faster and more efficiently. Simply click on the 'Use ChatGPT' button in your Gmail compose window to generate a response, and ScrAIbe will do the rest. Try ScrAIbe today and start writing smarter emails with AI.                    

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

الاسم ScrAIbe ScrAIbe
ID nbdpcanokjfhkogegcnpfkbfggbfnhfa
عنوان URL الرسمي https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa
الوصف A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
حجم الملف 23.1 KB
عدد التثبيتات 136
النسخة الحالية 0.0.1
آخر تحديث 2022-12-08
تاريخ النشر 2022-12-07
تقييم 3.00/5 مجموع تقييمات 2
المطور gastonmaffei
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/Popeyef5/ScrAIbe
عنوان صفحة المساعدة https://github.com/Popeyef5/ScrAIbe
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ScrAIbe",
    "description": "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT",
    "version": "0.0.1",
    "permissions": [
        "storage",
        "https:\/\/api.openai.com\/v1\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_title": "ScrAIbe - OpenAI API Key",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}