Upload file for ChatGPT
Add File context to ChatGPT
Upload file for ChatGPTคืออะไร?
Upload file for ChatGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Guillaume Reygner และคุณลักษณะหลักของมันคือ "Add File context to ChatGPT"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Upload file for ChatGPT
ดาวน์โหลดไฟล์ส่วนขยาย Upload file for ChatGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A Chrome extension that allows you to upload file directly into ChatGPT! 📤 Unlimited upload 💬 Unlimited conversation 🔗 50 file format supported 👆 Drag and drop supported 🚀 Upload more than one file at a time 📁 Multiple file upload supported 🎬 Discuss with YouTube video 🖼️ Reading image text from web 👆 Scrapping data from website 📥 Download code file directly from chatGPT 🪶 Image to Text for Midjourney or StableDiffusion 👨💻 Preview code to Codepen/CodeSandbox 🤝 If you would like to support my work, you can donate to buymeacoffee.com/reygner022A 🐦 I share free project on my Twitter : twitter.com/guillaume_rygn
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Upload file for ChatGPT |
ID | mflpknlcbonicfgikkmlloejpaigjapm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/upload-file-for-chatgpt/mflpknlcbonicfgikkmlloejpaigjapm |
คำอธิบาย | Add File context to ChatGPT |
ขนาดไฟล์ | 507 KB |
จำนวนการติดตั้ง | 5,014 |
เวอร์ชันปัจจุบัน | 2.24.6 |
อัปเดตครั้งล่าสุด | 2023-11-17 |
วันที่เผยแพร่ | 2023-05-27 |
คะแนน | 4.00/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | Guillaume Reygner |
อีเมล | [email protected] |
ประเภทการชำระเงิน | in_app |
เว็บไซต์ส่วนขยาย | https://twitter.com/guillaume_rygn |
URL หน้าช่วยเหลือ | https://twitter.com/guillaume_rygn |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Upload file for ChatGPT", "version": "2.24.6", "author": "Guillaume Reygner", "description": "Add File context to ChatGPT", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/extensionpay.com\/*" ], "js": [ "ExtPay.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "contentScript.js", "pdf.min.js", "pdf.worker.min.js", "mammoth.browser.min.js", "ExtPay.js" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |