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ファイルをダウンロード

ChatGPTable拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}