GPT Translate

Summarizes web page content in the language of your choice using GPT.

Co to jest GPT Translate?

GPT Translate to rozszerzenie Chrome opracowane przez projectwildflower23, a jego główną funkcją jest „Summarizes web page content in the language of your choice using GPT.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia GPT Translate

Pobierz pliki rozszerzeń GPT Translate w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Quickly summarize highlighted text, or an entire page, using the power of GPT. Can summarize text from other languages into your language.                    

Podstawowe informacje o rozszerzeniu

Nazwa GPT Translate GPT Translate
ID ljfjmbdgbebmjbfmdneeimenolagonol
Oficjalny URL https://chromewebstore.google.com/detail/gpt-translate/ljfjmbdgbebmjbfmdneeimenolagonol
Opis Summarizes web page content in the language of your choice using GPT.
Rozmiar pliku 6.21 MB
Liczba instalacji 2,708
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2023-04-04
Data Publikacji 2023-03-22
Ocena 3.00/5 Łącznie 4 Oceny
Deweloper projectwildflower23
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en,fr,es-419,hi,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT Translate",
    "version": "1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "main.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "description": "Summarizes web page content in the language of your choice using GPT.",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en"
}