OpenAI Playground Messages to Markdown
Extract playground messages and convert them into plain Markdown.
Cos'è OpenAI Playground Messages to Markdown?
OpenAI Playground Messages to Markdown è un'estensione di Chrome sviluppata da mmihajlovic, e la sua funzione principale è "Extract playground messages and convert them into plain Markdown.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OpenAI Playground Messages to Markdown
Scarica i file di estensione OpenAI Playground Messages to Markdown in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | OpenAI Playground Messages to Markdown |
ID | hfiaecdkbfmnknfoodpejlchkjlngnim |
URL Ufficiale | https://chromewebstore.google.com/detail/openai-playground-message/hfiaecdkbfmnknfoodpejlchkjlngnim |
Descrizione | Extract playground messages and convert them into plain Markdown. |
Dimensione del File | 9.83 KB |
Conteggio Installazioni | 153 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-04-02 |
Data di Pubblicazione | 2023-04-02 |
Valutazione | 2.00/5 Totale 3 Valutazioni |
Sviluppatore | mmihajlovic |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |