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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extract playground messages and convert them into plain Markdown."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में OpenAI Playground Messages to Markdown एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |