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."입니다.

확장 프로그램 스크린샷

screenshot

PolyGPT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        # 핵심 기능

* 언어 자동 인식을 통한 자연스러운 UX: 어떤 언어든 그냥 편하게 입력하세요!
* 인지된 언어 종류에 대한 적절한 기계 번역
* 기계 번역은 Google 번역 뿐만 아니라 DeepL 번역과 ChatGPT를 이용한 번역 모두 가능
* 번역된 내용이 아래쪽이 아니라 옆에 나오도록 하여 번역이 이상한 경우 쉽게 Cross Check 가능
* 별도의 UI 를 사용하여 다른 ChatGPT Chrome Extension 과의 충돌 방지                    

확장 프로그램 기본 정보

이름 PolyGPT 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\/*"
            ]
        }
    ]
}