PolyGPT
Enhance your ChatGPT conversations with PolyGPT - your personal AI assistant for multilingual communication.
PolyGPTคืออะไร?
PolyGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gulby623 และคุณลักษณะหลักของมันคือ "Enhance your ChatGPT conversations with PolyGPT - your personal AI assistant for multilingual communication."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PolyGPT
ดาวน์โหลดไฟล์ส่วนขยาย PolyGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
# 핵심 기능 * 언어 자동 인식을 통한 자연스러운 UX: 어떤 언어든 그냥 편하게 입력하세요! * 인지된 언어 종류에 대한 적절한 기계 번역 * 기계 번역은 Google 번역 뿐만 아니라 DeepL 번역과 ChatGPT를 이용한 번역 모두 가능 * 번역된 내용이 아래쪽이 아니라 옆에 나오도록 하여 번역이 이상한 경우 쉽게 Cross Check 가능 * 별도의 UI 를 사용하여 다른 ChatGPT Chrome Extension 과의 충돌 방지
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | PolyGPT |
ID | gahbjcodjplfadaokiajkgbkpeeeoegk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/polygpt/gahbjcodjplfadaokiajkgbkpeeeoegk |
คำอธิบาย | Enhance your ChatGPT conversations with PolyGPT - your personal AI assistant for multilingual communication. |
ขนาดไฟล์ | 930 KB |
จำนวนการติดตั้ง | 49 |
เวอร์ชันปัจจุบัน | 1.0.4 |
อัปเดตครั้งล่าสุด | 2023-06-08 |
วันที่เผยแพร่ | 2023-05-09 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | gulby623 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://polygpt.github.io/ |
URL หน้าช่วยเหลือ | https://polygpt.github.io/ |
URL หน้านโยบายความเป็นส่วนตัว | https://polygpt.github.io/privacy.html |
ภาษาที่รองรับ | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Enhance your ChatGPT conversations with PolyGPT - your personal AI assistant for multilingual communication.", "version": "1.0.4", "manifest_version": 3, "name": "PolyGPT", "background": { "service_worker": "background.bundle.js" }, "action": { "default_icon": "34.png" }, "icons": { "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/polygpt.github.io\/*", "https:\/\/chat.openai.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ], "run_at": "document_end" } ], "host_permissions": [ "https:\/\/chat.openai.com\/*", "https:\/\/translate.google.com\/" ], "permissions": [ "alarms", "storage", "unlimitedStorage", "tabs", "management" ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "128.png", "34.png" ], "matches": [ "https:\/\/polygpt.github.io\/*", "https:\/\/chat.openai.com\/*" ] } ] } |