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 |
电子邮箱 | [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" ] } ] } |