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/ 擴展基本資訊
| 名稱 | |
| ID | jboebkcdfhknhklkombfhpflpoaebpnk |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
}
]
} | |