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」です。
拡張機能のスクリーンショット
ChatGPTable拡張機能のCRXファイルをダウンロード
ChatGPTable拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Step 1. Click "Table copy" button to convert HTML table of ChatGPT response to markdown table 2. Paste anywhere you want markdown table https://chatgptable.xideprojext.xyz/
拡張機能の基本情報
名前 | ChatGPTable |
ID | jboebkcdfhknhklkombfhpflpoaebpnk |
公式URL | https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk |
説明 | A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images |
ファイルサイズ | 119 KB |
インストール数 | 48 |
現在のバージョン | 0.2.0 |
最終更新日 | 2023-03-21 |
公開日 | 2023-03-21 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | xide.projext |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://chatgptable.xideprojext.xyz/ |
ヘルプページのURL | https://chatgptable.xideprojext.xyz/ |
対応言語 | en |
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.2.0", "manifest_version": 3, "name": "ChatGPTable", "action": { "default_popup": "popup.html", "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" ] } ] } |