ChatGPT File Uploader
A Chrome extension that allows you to upload large files in chunks.
ChatGPT File Uploaderคืออะไร?
ChatGPT File Uploader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย automatemylife00 และคุณลักษณะหลักของมันคือ "A Chrome extension that allows you to upload large files in chunks."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT File Uploader
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT File Uploader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ChatGPT File Uploader is a Chrome extension that allows you to upload large files to chat.openai.com in smaller chunks. This can be useful when you need to upload a large file to a ChatGPT that has a character size limit. With File ChatGPT File Uploader, you can split the file into smaller chunks between 1 - 15000 characters and upload them one at a time. The extension adds a button to the page that lets you select a file and automatically splits it into chunks and uploads them for you. Currently supports the following file formats: txt, .py, .pdf, docx, .xlsx and many more. If you would like to support my work, you can donate to paypal.me/Automatemylife Clicking on the plugins icon will display the latest YouTube video from Automatemylife's channel hosted on pythonanywhere. if you are interested in how this was made then check out my channel at : https://www.youtube.com/@automatemylife00 update 1.2.4.7 plugin was colliding with the text in the text area, so I removed the button from inside the text area. update 1.2.4.6 Fixed bug that cause chatgpt to skip responses after openai update. update 1.2.4.4 fixed bug: "Application error: a client-side exception has occurred" that causes ChatGPT to crash after editing previous conversations. update 1.2.4.1 *removed permissions for YouTube.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChatGPT File Uploader |
ID | oaogphgfdbdbmhkiplemgehihiiececj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-file-uploader/oaogphgfdbdbmhkiplemgehihiiececj |
คำอธิบาย | A Chrome extension that allows you to upload large files in chunks. |
ขนาดไฟล์ | 1021 KB |
จำนวนการติดตั้ง | 83,227 |
เวอร์ชันปัจจุบัน | 1.2.4.7 |
อัปเดตครั้งล่าสุด | 2024-01-29 |
วันที่เผยแพร่ | 2023-05-13 |
คะแนน | 3.61/5 รวมทั้งหมด 74 คะแนน |
ผู้พัฒนา | automatemylife00 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.youtube.com/@automatemylife00 |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT File Uploader", "version": "1.2.4.7", "manifest_version": 3, "description": "A Chrome extension that allows you to upload large files in chunks.", "permissions": [ "*:\/\/chat.openai.com\/*", "notifications", "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js", "pdf.min.js", "pdf.worker.min.js", "mammoth.browser.min.js", "xlsx.min.js" ] } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "content.js", "pdf.min.js", "pdf.worker.min.js", "mammoth.browser.min.js", "xlsx.min.js", "Support.gif" ], "matches": [ "https:\/\/chat.openai.com\/*" ], "use_dynamic_url": false } ] } |