Save ChatGPT as PDF

Turn your chats into neatly formatted PDF.

Save ChatGPT as PDF란 무엇입니까?

Save ChatGPT as PDF은(는) https://pdfcrowd.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn your chats into neatly formatted PDF."입니다.

확장 프로그램 스크린샷

screenshot

Save ChatGPT as PDF 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The add-on adds a button to the ChatGPT webpage and with just a quick click, you can turn your chats into neatly formatted PDF files. It's super easy to use - perfect for keeping or sharing your interactions. The add-on uses the PDFCrowd API to create PDF.                    

확장 프로그램 기본 정보

이름 Save ChatGPT as PDF Save ChatGPT as PDF
ID ccjfggejcoobknjolglgmfhoeneafhhm
공식 URL https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm
설명 Turn your chats into neatly formatted PDF.
파일 크기 157 KB
설치 횟수 539
현재 버전 1.5
최근 업데이트 2024-02-29
출시 날짜 2024-01-11
평점 5.00/5 총 5 개의 평점
개발자 https://pdfcrowd.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://pdfcrowd.com/save-chatgpt-as-pdf/
도움말 페이지 URL https://pdfcrowd.com/contact/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Save ChatGPT as PDF",
    "version": "1.5",
    "description": "Turn your chats into neatly formatted PDF.",
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "common.js",
                "request.js"
            ]
        }
    ],
    "minimum_chrome_version": "100"
}