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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    }
}