ChatGPT to Markdown

A Chrome extension that exports ChatGPT chat history as Markdown text

ChatGPT to Markdown란 무엇입니까?

ChatGPT to Markdown은(는) https://chatopenai.pro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that exports ChatGPT chat history as Markdown text"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        📢Notice
It is recommended to use the newer and more complete export plug-in ExportGPT, for details: https://chatopenai.pro/exportgpt/

⚒️ Tips for use
1. Open the ChatGPT chat page and chat with ChatGPT
https://chat.openai.com/chat/
2. Click the Markdown icon in the upper right corner of the page to open the `ChatGPT to Markdown` operation panel
3. Click the button at the bottom of the panel to copy the text or download the Markdown text
4. You can edit the Markdown text as needed, and then copy or download
5. The popup window supports setting whether to automatically close the sidebar after export, and whether to insert metadata

🔗 Links
- All-in-one ChatGPT conversation export plugin - ExportGPT: https://chatopenai.pro/exportgpt
- Auto-save ChatGPT History: https://chatopenai.pro/auto-save-chatgpt-history/

🙋 Feedback
Any questions or BUG submissions, please contact https://chatopenai.pro/                    

확장 프로그램 기본 정보

이름 ChatGPT to Markdown ChatGPT to Markdown
ID dloobgjjpoohngalnjepgdggjeempdec
공식 URL https://chromewebstore.google.com/detail/chatgpt-to-markdown/dloobgjjpoohngalnjepgdggjeempdec
설명 A Chrome extension that exports ChatGPT chat history as Markdown text
파일 크기 119 KB
설치 횟수 4,345
현재 버전 1.10
최근 업데이트 2023-06-30
출시 날짜 2023-02-28
평점 4.23/5 총 13 개의 평점
개발자 https://chatopenai.pro
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://chatopenai.pro/
도움말 페이지 URL https://chatopenai.pro/chatgpt-to-markdown/
개인정보 보호 정책 페이지 URL https://sites.google.com/view/copy-csdn-privacy-policy/home
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A Chrome extension that exports ChatGPT chat history as Markdown text",
    "version": "1.10",
    "manifest_version": 3,
    "name": "ChatGPT to Markdown",
    "author": "openHacking",
    "homepage_url": "http:\/\/chatopenai.pro\/",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "48.png"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "128.png",
                "48.png",
                "16.png"
            ],
            "matches": []
        }
    ]
}