ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

ChatGPT Screentshot란 무엇입니까?

ChatGPT Screentshot은(는) landicefu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a button to download full screenshot of ChatGPT conversation"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Add two buttons to Chat GPT sidebar. One for downloading the whole conversation as a JPEG file. The other button allows you to download each prompt and answer as different JPEG files. With this plugin installed, you can easily share the conversations on social media or through messaging services more easy than ever.

========== v0.3 Release Notes ==========
- Fix the image shifting problem                    

확장 프로그램 기본 정보

이름 ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
공식 URL https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
설명 Add a button to download full screenshot of ChatGPT conversation
파일 크기 56.9 KB
설치 횟수 145
현재 버전 0.3
최근 업데이트 2022-12-14
출시 날짜 2022-12-11
평점 3.50/5 총 2 개의 평점
개발자 landicefu
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screentshot",
    "action": [],
    "manifest_version": 3,
    "author": "Landice Fu ",
    "version": "0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Add a button to download full screenshot of ChatGPT conversation",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat"
            ],
            "js": [
                "content-script.js",
                "html2canvas.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "download_button.svg"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}