Export GPT - Export your chats with GPTs

An extension to export your chats with pre-trained transformers

Co to jest Export GPT - Export your chats with GPTs?

Export GPT - Export your chats with GPTs to rozszerzenie Chrome opracowane przez Rizwan, a jego główną funkcją jest „An extension to export your chats with pre-trained transformers”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Export GPT - Export your chats with GPTs

Pobierz pliki rozszerzeń Export GPT - Export your chats with GPTs 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

                        An extension to export your conversations with pre-trained transformers into a sharable PDF file. Currently it only supports ChatGPT                    

Podstawowe informacje o rozszerzeniu

Nazwa Export GPT - Export your chats with GPTs Export GPT - Export your chats with GPTs
ID pipfffccmkdbpmnnpcnbecjmbgacnkob
Oficjalny URL https://chromewebstore.google.com/detail/export-gpt-export-your-ch/pipfffccmkdbpmnnpcnbecjmbgacnkob
Opis An extension to export your chats with pre-trained transformers
Rozmiar pliku 268 KB
Liczba instalacji 118
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2023-05-10
Data Publikacji 2023-05-05
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Rizwan
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Export GPT - Export your chats with GPTs",
    "description": "An extension to export your chats with pre-trained transformers",
    "version": "1.0.2",
    "manifest_version": 3,
    "action": [],
    "icons": {
        "16": "\/img\/exportgpt-16.png",
        "32": "\/img\/exportgpt-32.png",
        "48": "\/img\/exportgpt-48.png",
        "128": "\/img\/exportgpt-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "style.css",
                "img\/icon-main.png",
                "img\/loader.png"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}