Upload file for ChatGPT
Add File context to ChatGPT
Upload file for ChatGPT là gì?
Upload file for ChatGPT là một tiện ích mở rộng Chrome được phát triển bởi Guillaume Reygner, và tính năng chính của nó là "Add File context to ChatGPT".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Upload file for ChatGPT
Tải xuống các tệp mở rộng Upload file for ChatGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Upload file for ChatGPT |
ID | mflpknlcbonicfgikkmlloejpaigjapm |
URL Chính Thức | https://chromewebstore.google.com/detail/upload-file-for-chatgpt/mflpknlcbonicfgikkmlloejpaigjapm |
Mô tả | Add File context to ChatGPT |
Kích Thước Tệp | 507 KB |
Số Lần Cài Đặt | 5,014 |
Phiên Bản Hiện Tại | 2.24.6 |
Cập Nhật Lần Cuối | 2023-11-17 |
Ngày Phát Hành | 2023-05-27 |
Đánh Giá | 4.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Guillaume Reygner |
[email protected] | |
Loại Thanh Toán | in_app |
Trang Web Mở Rộng | https://twitter.com/guillaume_rygn |
URL Trang Trợ Giúp | https://twitter.com/guillaume_rygn |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |