Upload file for ChatGPT

Add File context to ChatGPT

Was ist Upload file for ChatGPT?

Upload file for ChatGPT ist eine Chrome-Erweiterung, die von Guillaume Reygner entwickelt wurde, und ihr Hauptmerkmal ist "Add File context to ChatGPT".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Upload file for ChatGPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie Upload file for ChatGPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Upload file for ChatGPT Upload file for ChatGPT
ID mflpknlcbonicfgikkmlloejpaigjapm
Offizielle URL https://chromewebstore.google.com/detail/upload-file-for-chatgpt/mflpknlcbonicfgikkmlloejpaigjapm
Beschreibung Add File context to ChatGPT
Dateigröße 507 KB
Installationsanzahl 5,014
Aktuelle Version 2.24.6
Letztes Update 2023-11-17
Veröffentlichungsdatum 2023-05-27
Bewertung 4.00/5 Insgesamt 8 Bewertungen
Entwickler Guillaume Reygner
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite https://twitter.com/guillaume_rygn
Hilfeseite URL https://twitter.com/guillaume_rygn
Unterstützte Sprachen 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"
    ]
}