OpenAI Playground Messages to Markdown
Extract playground messages and convert them into plain Markdown.
ما هو OpenAI Playground Messages to Markdown؟
OpenAI Playground Messages to Markdown هو إضافة Chrome تم تطويرها بواسطة mmihajlovic، والميزة الرئيسية لها هي "Extract playground messages and convert them into plain Markdown.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة OpenAI Playground Messages to Markdown
قم بتنزيل ملفات الامتداد OpenAI Playground Messages to Markdown بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } ] } |