OpenAI copy prompts and others to clipboard
OpenAI copy prompts and others to clipboard
OpenAI copy prompts and others to clipboardคืออะไร?
OpenAI copy prompts and others to clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย saikat guha และคุณลักษณะหลักของมันคือ "OpenAI copy prompts and others to clipboard"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OpenAI copy prompts and others to clipboard
ดาวน์โหลดไฟล์ส่วนขยาย OpenAI copy prompts and others to clipboard ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This simple extension allows you to copy to clipboard, the prompts and other settings that you have made on the page https://beta.openai.com/playground, so that you can share those easily with others. On installing the extension a button will appear on the page(https://beta.openai.com/playground) called "Copy Prompt and other settings to clipboard", clicking it will copy the prompts and other settings data to the clipboard
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | OpenAI copy prompts and others to clipboard |
ID | idcfjfbdfbeddfjgjloomfpaddfehkkf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/openai-copy-prompts-and-o/idcfjfbdfbeddfjgjloomfpaddfehkkf |
คำอธิบาย | OpenAI copy prompts and others to clipboard |
ขนาดไฟล์ | 4.15 KB |
จำนวนการติดตั้ง | 261 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2020-08-01 |
วันที่เผยแพร่ | 2020-07-31 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | saikat guha |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/sktguha/openAIExt |
URL หน้าช่วยเหลือ | https://github.com/sktguha/openAIExt/issues/new |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OpenAI copy prompts and others to clipboard", "short_name": "openAICopyToClip", "version": "0.1.0", "description": "OpenAI copy prompts and others to clipboard", "browser_action": [], "content_scripts": [ { "matches": [ "https:\/\/beta.openai.com\/playground\/*", "http:\/\/beta.openai.com\/playground\/*" ], "run_at": "document_end", "js": [ "script.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+E", "mac": "Command+E", "chromeos": "Ctrl+E", "linux": "Ctrl+E" } } } } |