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によって開発されたChromeの拡張機能で、その主な機能は「Extract playground messages and convert them into plain Markdown.」です。
拡張機能のスクリーンショット
OpenAI Playground Messages to Markdown拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |