ChatGPT File Uploader

This extension allows you to upload files to a webpage.

Что такое ChatGPT File Uploader?

ChatGPT File Uploader - это расширение Chrome, разработанное Shreyas Subramani, и его основная функция - "This extension allows you to upload files to a webpage.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения ChatGPT File Uploader

Скачайте файлы расширений ChatGPT File Uploader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The "ChatGPT File Uploader" extension provides a convenient way to upload files into ChatGPT. With this extension, you can easily select and upload files to ChatGPT with just a few clicks.

How to Use:

1. Install the extension from the Chrome Web Store.
2. Once installed, the extension icon will appear in the Chrome toolbar.
3. Click on the extension icon to open the popup window.
4. Use the start button to activate or deactivate the file upload functionality.
5. When the button is active, you can click on file upload fields on websites to select and upload files.
Enjoy a seamless file uploading experience without any hassle.                    

Основная информация о расширении

Название ChatGPT File Uploader ChatGPT File Uploader
ID nhjkphnmaicfiffimbmbhlhbbdagfamn
Официальный URL https://chromewebstore.google.com/detail/chatgpt-file-uploader/nhjkphnmaicfiffimbmbhlhbbdagfamn
Описание This extension allows you to upload files to a webpage.
Размер файла 8.88 KB
Количество установок 49
Текущая Версия 1.0
Последнее Обновление 2023-05-24
Дата публикации 2023-05-23
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Shreyas Subramani
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT File Uploader",
    "description": "This extension allows you to upload files to a webpage.",
    "version": "1.0",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}