Upload file for ChatGPT
Add File context to ChatGPT
Qu'est-ce que Upload file for ChatGPT ?
Upload file for ChatGPT est une extension Chrome développée par Guillaume Reygner, et sa fonction principale est "Add File context to ChatGPT".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Upload file for ChatGPT
Téléchargez les fichiers d'extension Upload file for ChatGPT au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Upload file for ChatGPT |
ID | mflpknlcbonicfgikkmlloejpaigjapm |
URL Officiel | https://chromewebstore.google.com/detail/upload-file-for-chatgpt/mflpknlcbonicfgikkmlloejpaigjapm |
Description | Add File context to ChatGPT |
Taille du Fichier | 507 KB |
Nombre d'Installations | 5,014 |
Version Actuelle | 2.24.6 |
Dernière Mise à Jour | 2023-11-17 |
Date de Publication | 2023-05-27 |
Évaluation | 4.00/5 Total 8 Évaluations |
Développeur | Guillaume Reygner |
[email protected] | |
Type de Paiement | in_app |
Site Web de l'Extension | https://twitter.com/guillaume_rygn |
URL de la Page d'Aide | https://twitter.com/guillaume_rygn |
Langues Prises en Charge | 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" ] } |