ReGPT
This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way
ReGPTคืออะไร?
ReGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย knafle และคุณลักษณะหลักของมันคือ "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ReGPT
ดาวน์โหลดไฟล์ส่วนขยาย ReGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an extension that leverage the power of Chat GPT to generate auto-resposes for emails in a simple way
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ReGPT |
ID | ndamopilbmdgefbclfmdppakjifdekco |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/regpt/ndamopilbmdgefbclfmdppakjifdekco |
คำอธิบาย | This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way |
ขนาดไฟล์ | 21.28 KB |
จำนวนการติดตั้ง | 449 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2023-05-12 |
วันที่เผยแพร่ | 2023-05-12 |
ผู้พัฒนา | knafle |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ReGPT", "version": "1.0", "description": "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way", "options_page": "options.html", "action": { "default_icon": "128.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/api.openai.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "content_script.js" ], "css": [ "style.css" ], "run_at": "document_end" } ] } |