chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

Co to jest chatGPT screenshot?

chatGPT screenshot to rozszerzenie Chrome opracowane przez marc, a jego główną funkcją jest „Take a nice screenshot of the whole chat GPT conversation”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia chatGPT screenshot

Pobierz pliki rozszerzeń chatGPT screenshot 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

                        OpenAI published its newest chatGPT AI (at chat.openai.com) where you can chat with an advanced AI. There is however no export functionality, so people take manual screenshots that do not include the whole conversation (they have to make several screenshots add merge them in an image editing tool).

This extension provided an export button that styles the content of chatGPT in a way that looks nice and makes a screenshot of the whole conversation. An image (png file) is then automatically downloaded, ready to be shared easily.                    

Podstawowe informacje o rozszerzeniu

Nazwa chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
Opis Take a nice screenshot of the whole chat GPT conversation
Rozmiar pliku 5.94 KB
Liczba instalacji 3,587
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2023-04-15
Data Publikacji 2022-12-05
Ocena 3.44/5 Łącznie 9 Oceny
Deweloper marc
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/marcj/chrome-chatgpt-screenshot-extension
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "chatGPT screenshot",
    "action": [],
    "manifest_version": 3,
    "version": "0.2",
    "description": "Take a nice screenshot of the whole chat GPT conversation",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}