chatGPT screenshot
Take a nice screenshot of the whole chat GPT conversation
chatGPT screenshotคืออะไร?
chatGPT screenshot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย marc และคุณลักษณะหลักของมันคือ "Take a nice screenshot of the whole chat GPT conversation"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย chatGPT screenshot
ดาวน์โหลดไฟล์ส่วนขยาย chatGPT screenshot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
OpenAI published its newest chatGPT AI (at chat.openai.com) where you can chat with an advanced AI. There is however no export functionality, so people take manual screenshots that do not include the whole conversation (they have to make several screenshots add merge them in an image editing tool). This extension provided an export button that styles the content of chatGPT in a way that looks nice and makes a screenshot of the whole conversation. An image (png file) is then automatically downloaded, ready to be shared easily.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | chatGPT screenshot |
ID | nobfenidifcdghhkifkcnlhmnlfnmhek |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek |
คำอธิบาย | Take a nice screenshot of the whole chat GPT conversation |
ขนาดไฟล์ | 5.94 KB |
จำนวนการติดตั้ง | 3,587 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2023-04-15 |
วันที่เผยแพร่ | 2022-12-05 |
คะแนน | 3.44/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | marc |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/marcj/chrome-chatgpt-screenshot-extension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "chatGPT screenshot", "action": [], "manifest_version": 3, "version": "0.2", "description": "Take a nice screenshot of the whole chat GPT conversation", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ] } |