ChatGPTable

A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images

ChatGPTable란 무엇입니까?

ChatGPTable은(는) xide.projext에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        1. Easy to convert HTML table of ChatGPT response to markdown table
2. Put anywhare you want markdown table 

https://chatgptable.xideprojext.xyz/                    

확장 프로그램 기본 정보

이름 ChatGPTable ChatGPTable
ID ammbkfinlagkifoanpbmkiglplfjogpf
공식 URL https://chromewebstore.google.com/detail/chatgptable/ammbkfinlagkifoanpbmkiglplfjogpf
설명 A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
파일 크기 78.69 KB
설치 횟수 190
현재 버전 0.1.8
최근 업데이트 2023-03-19
출시 날짜 2023-03-14
평점 5.00/5 총 4 개의 평점
개발자 xide.projext
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://chatgptable.xideprojext.xyz/
도움말 페이지 URL https://chatgptable.xideprojext.xyz/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images",
    "version": "0.1.8",
    "manifest_version": 3,
    "name": "ChatGPTable",
    "action": {
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon.png"
            ],
            "matches": []
        }
    ],
    "permissions": [],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ]
}