OpenAI Playground Messages to Markdown

Extract playground messages and convert them into plain Markdown.

什么是OpenAI Playground Messages to Markdown?

OpenAI Playground Messages to Markdown是由mmihajlovic开发的Chrome扩展程序,该扩展的主要功能是“Extract playground messages and convert them into plain Markdown.”。

扩展截图

screenshot

下载OpenAI Playground Messages to Markdown扩展crx文件

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

扩展使用说明

                        This extensions adds a button which copies all the messages  from the OpenAI 
Chat Playground to the clipboard as Markdown. It's used to keep a record of a conversation with ChatGPT.                    

扩展基本信息

名称 OpenAI Playground Messages to Markdown OpenAI Playground Messages to Markdown
ID hfiaecdkbfmnknfoodpejlchkjlngnim
官方URL https://chromewebstore.google.com/detail/openai-playground-message/hfiaecdkbfmnknfoodpejlchkjlngnim
简介 Extract playground messages and convert them into plain Markdown.
文件大小 9.83 KB
安装次数 153
当前版本 1.0
更新时间 2023-04-02
上架时间 2023-04-02
评分 2.00/5 共3次评分
开发者 mmihajlovic
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "OpenAI Playground Messages to Markdown",
    "version": "1.0",
    "description": "Extract playground messages and convert them into plain Markdown.",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "notifications"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_title": "Convert to Markdown"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}