ChatGPT File Uploader For Playground
A Chrome extension that allows you to upload large files in chunks.
ChatGPT File Uploader For Playground क्या है?
ChatGPT File Uploader For Playground automatemylife00 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension that allows you to upload large files in chunks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT File Uploader For Playground एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
ChatGPT File Uploader is a Chrome extension that allows you to upload large files to https://platform.openai.com/playground?mode=chat in smaller chunks. This can be useful when you need to upload a large file to a ChatGPT that has a character size limit. With File ChatGPT File Uploader, you can split the file into smaller chunks between 1 - 15000 characters and upload them one at a time. The extension adds a button to the page that lets you select a file and automatically splits it into chunks and uploads them for you. Currently supports the following file formats: txt, js , py, css, json, csv.pdf, doc, docx,.xls,.xlsx If you would like to support my work, you can donate to paypal.me/Automatemylife if you are interested in how this was made then check out my channel at : https://www.youtube.com/@automatemylife00
एक्सटेंशन की मूल जानकारी
नाम | ChatGPT File Uploader For Playground |
ID | ofekmgemedaofjlkocjlpjddjaanddin |
आधिकारिक URL | https://chromewebstore.google.com/detail/chatgpt-file-uploader-for/ofekmgemedaofjlkocjlpjddjaanddin |
विवरण | A Chrome extension that allows you to upload large files in chunks. |
फ़ाइल का आकार | 707 KB |
स्थापना संख्या | 135 |
वर्तमान संस्करण | 1.2.4 |
अंतिम अपडेट | 2023-08-21 |
प्रकाशन तिथि | 2023-08-07 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | automatemylife00 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.youtube.com/@automatemylife00 |
सहायता पृष्ठ URL | https://www.youtube.com/@automatemylife00 |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT File Uploader For Playground", "version": "1.2.4", "manifest_version": 3, "description": "A Chrome extension that allows you to upload large files in chunks.", "permissions": [ "*:\/\/platform.openai.com\/playground?mode=chat*" ], "action": [], "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/platform.openai.com\/playground?mode=chat*" ], "js": [ "content.js", "pdf.min.js", "pdf.worker.min.js", "mammoth.browser.min.js", "xlsx.min.js" ] } ] } |