ChatGPT Copy as Markdown

This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…

ChatGPT Copy as Markdown란 무엇입니까?

ChatGPT Copy as Markdown은(는) mild7caloriemategreentea에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This is an extension to copy conversations with ChatGPT to the clipboard as markdown format.
Click the icon or use the shortcut keys (Alt+Shift+A) to copy the contents of the conversation in the tab you are viewing                    

확장 프로그램 기본 정보

이름 ChatGPT Copy as Markdown ChatGPT Copy as Markdown
ID abnaignolljmbhljfenjgedomihcdkmn
공식 URL https://chromewebstore.google.com/detail/chatgpt-copy-as-markdown/abnaignolljmbhljfenjgedomihcdkmn
설명 This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…
파일 크기 87.61 KB
설치 횟수 95
현재 버전 0.0.3
최근 업데이트 2023-04-25
출시 날짜 2023-03-20
평점 4.50/5 총 2 개의 평점
개발자 mild7caloriemategreentea
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Copy as Markdown",
    "version": "0.0.3",
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "action": [],
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-loader.content-script.ts.e5f55049.68e713a0.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/c\/*"
            ]
        }
    ],
    "icons": {
        "16": "image\/16x16.png",
        "48": "image\/48x48.png",
        "128": "image\/128x128.png"
    },
    "commands": {
        "chatgpt-copy-as-markdown": {
            "suggested_key": {
                "default": "Alt+Shift+A"
            },
            "description": "Copy Conversation with ChatGPT as markdown"
        }
    },
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "resources": [
                "assets\/logger.33b921cf.js",
                "assets\/content-script.ts.e5f55049.js"
            ],
            "use_dynamic_url": true
        }
    ]
}