ChatGPT Chat Extractor

A basic chat text Extractor

Co to jest ChatGPT Chat Extractor?

ChatGPT Chat Extractor to rozszerzenie Chrome opracowane przez Invictus, a jego główną funkcją jest „A basic chat text Extractor”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ChatGPT Chat Extractor

Pobierz pliki rozszerzeń ChatGPT Chat Extractor 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

                        When chatting with ChatGPT, you would want to copy all the conversation you have had with ChatGPT. But you know copy/paste takes a lot of time.
This extension helps you download a printable html file of your conversation with the chatGPT bot. Just click the extension icon and it will download all of the conversation in current chat tab into an html file. The html will have all of the styles and formatting as in original chat window.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Chat Extractor ChatGPT Chat Extractor
ID ppkdabpmgbglpnghdbmnemflamdfgdkj
Oficjalny URL https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj
Opis A basic chat text Extractor
Rozmiar pliku 27.39 KB
Liczba instalacji 31
Aktualna Wersja 0.0.20
Ostatnia Aktualizacja 2023-02-07
Data Publikacji 2023-02-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Invictus
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://www.buymeacoffee.com/invic1us
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Chat Extractor",
    "description": "A basic chat text Extractor",
    "version": "0.0.20",
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon32.png"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "permissions": [
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 3
}