chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

chatGPT screenshot란 무엇입니까?

chatGPT screenshot은(는) marc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take a nice screenshot of the whole chat GPT conversation"입니다.

확장 프로그램 스크린샷

screenshot

chatGPT screenshot 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
공식 URL https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
설명 Take a nice screenshot of the whole chat GPT conversation
파일 크기 5.94 KB
설치 횟수 3,587
현재 버전 0.2
최근 업데이트 2023-04-15
출시 날짜 2022-12-05
평점 3.44/5 총 9 개의 평점
개발자 marc
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/marcj/chrome-chatgpt-screenshot-extension
지원되는 언어 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"
            ]
        }
    ]
}