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 Основная информация о расширении
| Название | |
| 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"
]
} | |