ChatGPT Screenshot

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

ChatGPT Screenshot란 무엇입니까?

ChatGPT Screenshot은(는) kuya5220에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage"입니다.

확장 프로그램 스크린샷

screenshot

ChatGPT Screenshot 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        想要保存與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!                    

확장 프로그램 기본 정보

이름 ChatGPT Screenshot ChatGPT Screenshot
ID ppggknlipehkckcplghjfcoemdeaieme
공식 URL https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme
설명 Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
파일 크기 90.18 KB
설치 횟수 549
현재 버전 0.0.5
최근 업데이트 2023-01-03
출시 날짜 2022-12-31
평점 5.00/5 총 1 개의 평점
개발자 kuya5220
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/stu00608/ChatGPT-Screenshot
도움말 페이지 URL https://github.com/stu00608/ChatGPT-Screenshot
지원되는 언어 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"
        }
    ]
}