ChatGPT Screenshot

Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage

Co to jest ChatGPT Screenshot?

ChatGPT Screenshot to rozszerzenie Chrome opracowane przez kuya5220, a jego główną funkcją jest „Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage”.

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

                        想要保存與ChatGPT的對話,卻覺得一張一張手動截圖太麻煩嗎?使用這個插件,即可透過一次點擊獲取完整的對話紀錄!

Wanna save the conversation content with ChatGPT but too lazy to screenshot one by one? Get this extension to screenshot the complete conversation by one click!                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Screenshot ChatGPT Screenshot
ID ppggknlipehkckcplghjfcoemdeaieme
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme
Opis Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
Rozmiar pliku 90.18 KB
Liczba instalacji 549
Aktualna Wersja 0.0.5
Ostatnia Aktualizacja 2023-01-03
Data Publikacji 2022-12-31
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper kuya5220
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/stu00608/ChatGPT-Screenshot
Adres URL Strony Pomocy https://github.com/stu00608/ChatGPT-Screenshot
Obsługiwane Języki zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screenshot",
    "action": [],
    "manifest_version": 3,
    "version": "0.0.5",
    "description": "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "html2canvas.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}