ChatGPT File Uploader

This extension allows you to upload files to a webpage.

Co to jest ChatGPT File Uploader?

ChatGPT File Uploader to rozszerzenie Chrome opracowane przez Shreyas Subramani, a jego główną funkcją jest „This extension allows you to upload files to a webpage.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ChatGPT File Uploader

Pobierz pliki rozszerzeń ChatGPT File Uploader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT File Uploader ChatGPT File Uploader
ID nhjkphnmaicfiffimbmbhlhbbdagfamn
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-file-uploader/nhjkphnmaicfiffimbmbhlhbbdagfamn
Opis This extension allows you to upload files to a webpage.
Rozmiar pliku 8.88 KB
Liczba instalacji 49
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-05-24
Data Publikacji 2023-05-23
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Shreyas Subramani
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}