EmbedGPT - Embed ChatGPT content
Share with one click and easily paste externally.
EmbedGPT - Embed ChatGPT contentคืออะไร?
EmbedGPT - Embed ChatGPT content เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://embedgpt.vercel.app และคุณลักษณะหลักของมันคือ "Share with one click and easily paste externally."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EmbedGPT - Embed ChatGPT content
ดาวน์โหลดไฟล์ส่วนขยาย EmbedGPT - Embed ChatGPT content ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Easily share ChatGPT content with one click. You can paste it to a forum as an iframe or share it to communities such as Twitter and Reddit.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | EmbedGPT - Embed ChatGPT content |
ID | nbjoccgcnhjmhpholoagaodhgiehbloa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/embedgpt-embed-chatgpt-co/nbjoccgcnhjmhpholoagaodhgiehbloa |
คำอธิบาย | Share with one click and easily paste externally. |
ขนาดไฟล์ | 9.15 KB |
จำนวนการติดตั้ง | 114 |
เวอร์ชันปัจจุบัน | 1.2.2 |
อัปเดตครั้งล่าสุด | 2023-04-26 |
วันที่เผยแพร่ | 2023-03-02 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://embedgpt.vercel.app |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://embedgpt.vercel.app |
URL หน้าช่วยเหลือ | https://embedgpt.vercel.app |
ภาษาที่รองรับ | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "__MSG_description__", "version": "1.2.2", "manifest_version": 3, "name": "__MSG_name__", "background": { "service_worker": "background.bundle.js" }, "permissions": [ "activeTab", "scripting" ], "action": { "default_icon": { "16": "16x16.png", "32": "32x32.png" }, "default_title": "Share Content" }, "icons": { "16": "16x16.png", "32": "32x32.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/c\/*" ], "js": [ "contentScript.bundle.js" ], "run_at": "document_end" } ], "default_locale": "ko" } |