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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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 |
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" ] } ] } |