OpenAI Playground Messages to Markdown
Extract playground messages and convert them into plain Markdown.
Was ist OpenAI Playground Messages to Markdown?
OpenAI Playground Messages to Markdown ist eine Chrome-Erweiterung, die von mmihajlovic entwickelt wurde, und ihr Hauptmerkmal ist "Extract playground messages and convert them into plain Markdown.".
Erweiterungsscreenshots
OpenAI Playground Messages to Markdown-Erweiterungs-CRX-Datei herunterladen
Laden Sie OpenAI Playground Messages to Markdown-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hfiaecdkbfmnknfoodpejlchkjlngnim |
| Offizielle URL | https://chromewebstore.google.com/detail/openai-playground-message/hfiaecdkbfmnknfoodpejlchkjlngnim |
| Beschreibung | Extract playground messages and convert them into plain Markdown. |
| Dateigröße | 9.83 KB |
| Installationsanzahl | 153 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2023-04-02 |
| Veröffentlichungsdatum | 2023-04-02 |
| Bewertung | 2.00/5 Insgesamt 3 Bewertungen |
| Entwickler | mmihajlovic |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |