ChatGPT Copy as Markdown

This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…

什么是ChatGPT Copy as Markdown?

ChatGPT Copy as Markdown是由mild7caloriemategreentea开发的Chrome扩展程序,该扩展的主要功能是“This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…”。

扩展截图

screenshot

下载ChatGPT Copy as Markdown扩展crx文件

下载ChatGPT Copy as Markdown扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is an extension to copy conversations with ChatGPT to the clipboard as markdown format.
Click the icon or use the shortcut keys (Alt+Shift+A) to copy the contents of the conversation in the tab you are viewing                    

扩展基本信息

名称 ChatGPT Copy as Markdown ChatGPT Copy as Markdown
ID abnaignolljmbhljfenjgedomihcdkmn
官方URL https://chromewebstore.google.com/detail/chatgpt-copy-as-markdown/abnaignolljmbhljfenjgedomihcdkmn
简介 This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…
文件大小 87.61 KB
安装次数 95
当前版本 0.0.3
更新时间 2023-04-25
上架时间 2023-03-20
评分 4.50/5 共2次评分
开发者 mild7caloriemategreentea
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Copy as Markdown",
    "version": "0.0.3",
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "action": [],
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-loader.content-script.ts.e5f55049.68e713a0.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/c\/*"
            ]
        }
    ],
    "icons": {
        "16": "image\/16x16.png",
        "48": "image\/48x48.png",
        "128": "image\/128x128.png"
    },
    "commands": {
        "chatgpt-copy-as-markdown": {
            "suggested_key": {
                "default": "Alt+Shift+A"
            },
            "description": "Copy Conversation with ChatGPT as markdown"
        }
    },
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "resources": [
                "assets\/logger.33b921cf.js",
                "assets\/content-script.ts.e5f55049.js"
            ],
            "use_dynamic_url": true
        }
    ]
}