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插件。
扩展使用说明
                        1. Easy to convert HTML table of ChatGPT response to markdown table
2. Put anywhare you want markdown table 
https://chatgptable.xideprojext.xyz/                     扩展基本信息
| 名称 |   |  
| 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"
            ]
        }
    ]
}  |  |