ChatGPT Copy as Markdown
This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…
ChatGPT Copy as Markdownคืออะไร?
ChatGPT Copy as Markdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mild7caloriemategreentea และคุณลักษณะหลักของมันคือ "This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Copy as Markdown
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT Copy as Markdown ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut keys (Alt+Shift+A) to copy the contents of the conversation in the tab you are viewing
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChatGPT Copy as Markdown |
ID | abnaignolljmbhljfenjgedomihcdkmn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-copy-as-markdown/abnaignolljmbhljfenjgedomihcdkmn |
คำอธิบาย | This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut… |
ขนาดไฟล์ | 87.61 KB |
จำนวนการติดตั้ง | 95 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2023-04-25 |
วันที่เผยแพร่ | 2023-03-20 |
คะแนน | 4.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | mild7caloriemategreentea |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Copy as Markdown", "version": "0.0.3", "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "action": [], "content_scripts": [ { "js": [ "assets\/content-script-loader.content-script.ts.e5f55049.68e713a0.js" ], "matches": [ "https:\/\/chat.openai.com\/c\/*" ] } ], "icons": { "16": "image\/16x16.png", "48": "image\/48x48.png", "128": "image\/128x128.png" }, "commands": { "chatgpt-copy-as-markdown": { "suggested_key": { "default": "Alt+Shift+A" }, "description": "Copy Conversation with ChatGPT as markdown" } }, "permissions": [ "activeTab", "clipboardWrite" ], "web_accessible_resources": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "resources": [ "assets\/logger.33b921cf.js", "assets\/content-script.ts.e5f55049.js" ], "use_dynamic_url": true } ] } |