PolyGPT

Enhance your ChatGPT conversations with PolyGPT - your personal AI assistant for multilingual communication.

Was ist PolyGPT?

PolyGPT ist eine Chrome-Erweiterung, die von gulby623 entwickelt wurde, und ihr Hauptmerkmal ist "Enhance your ChatGPT conversations with PolyGPT - your personal AI assistant for multilingual communication.".

Erweiterungsscreenshots

screenshot

PolyGPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie PolyGPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        # 핵심 기능

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

Grundlegende Informationen zur Erweiterung

Name PolyGPT PolyGPT
ID gahbjcodjplfadaokiajkgbkpeeeoegk
Offizielle URL https://chromewebstore.google.com/detail/polygpt/gahbjcodjplfadaokiajkgbkpeeeoegk
Beschreibung Enhance your ChatGPT conversations with PolyGPT - your personal AI assistant for multilingual communication.
Dateigröße 930 KB
Installationsanzahl 49
Aktuelle Version 1.0.4
Letztes Update 2023-06-08
Veröffentlichungsdatum 2023-05-09
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler gulby623
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://polygpt.github.io/
Hilfeseite URL https://polygpt.github.io/
URL der Datenschutzrichtlinien-Seite https://polygpt.github.io/privacy.html
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}