PolyGPT
Enhance your ChatGPT conversations with PolyGPT - your personal AI assistant for multilingual communication.
什麼是PolyGPT?
PolyGPT是由gulby623開發的Chrome擴展程式,該擴展的主要功能是“Enhance your ChatGPT conversations with PolyGPT - your personal AI assistant for multilingual communication.”。
擴展截圖
下載PolyGPT擴展crx文件
下載PolyGPT擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
# 핵심 기능 * 언어 자동 인식을 통한 자연스러운 UX: 어떤 언어든 그냥 편하게 입력하세요! * 인지된 언어 종류에 대한 적절한 기계 번역 * 기계 번역은 Google 번역 뿐만 아니라 DeepL 번역과 ChatGPT를 이용한 번역 모두 가능 * 번역된 내용이 아래쪽이 아니라 옆에 나오도록 하여 번역이 이상한 경우 쉽게 Cross Check 가능 * 별도의 UI 를 사용하여 다른 ChatGPT Chrome Extension 과의 충돌 방지
擴展基本資訊
名稱 | PolyGPT |
ID | gahbjcodjplfadaokiajkgbkpeeeoegk |
官方網址 | 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\/*" ] } ] } |