ChatGPT File Uploader

This extension allows you to upload files to a webpage.

Hvad er ChatGPT File Uploader?

ChatGPT File Uploader er en Chrome-udvidelse udviklet af Shreyas Subramani, og dens hovedfunktion er "This extension allows you to upload files to a webpage.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download ChatGPT File Uploader-udvidelses-CRX-fil

Download ChatGPT File Uploader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn ChatGPT File Uploader ChatGPT File Uploader
ID nhjkphnmaicfiffimbmbhlhbbdagfamn
Officiel URL https://chromewebstore.google.com/detail/chatgpt-file-uploader/nhjkphnmaicfiffimbmbhlhbbdagfamn
Beskrivelse This extension allows you to upload files to a webpage.
Filstørrelse 8.88 KB
Antal Installationer 49
Nuværende Version 1.0
Senest Opdateret 2023-05-24
Udgivelsesdato 2023-05-23
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Shreyas Subramani
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}