Chatty File Uploader

Upload larger text files to ChatGPT

Chatty File Uploader क्या है?

Chatty File Uploader Barry Prendergast द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Upload larger text files to ChatGPT"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chatty File Uploader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ⚠️ This extension only works on chat.openai.com

# How does it work?

1. Press 'Submit File' to upload a text file to ChatGPT
2. The extension splits file in multiple chunks that won't overload the model
3. A progress bar indicates how much has already been loaded
4. Lower the `Character Count` if you're seeing any errors
5. That's it!

💡 For best results, add your prompt *before* uploading the file.

# Acceptable File Formats

Right now it accepts the following file types:

* Text `.txt`
* Markdown `.md`
* Javascript `.js`
* Python `.py`
* HTML `.html`
* CSS `.css`
* JSON `.json`
* CSV `.csv`

# Why use it?

* Summarise long documents?
* Find actions in meeting notes?
* Analyse interviews?
* Find patterns and insights in tabular data?
* Find bugs in your code?

# Acknowledgements

Inspired by [AutomateMyLife](https://www.youtube.com/@automatemylife00/).                    

एक्सटेंशन की मूल जानकारी

नाम Chatty File Uploader Chatty File Uploader
ID hkaeghidfjhncjnajpbmdhpcpfhkacmp
आधिकारिक URL https://chromewebstore.google.com/detail/chatty-file-uploader/hkaeghidfjhncjnajpbmdhpcpfhkacmp
विवरण Upload larger text files to ChatGPT
फ़ाइल का आकार 8.94 KB
स्थापना संख्या 51
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2023-05-18
प्रकाशन तिथि 2023-05-17
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Barry Prendergast
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chatty File Uploader",
    "version": "0.0.2",
    "manifest_version": 3,
    "description": "Upload larger text files to ChatGPT",
    "action": [],
    "icons": {
        "16": "chatty-16.png",
        "48": "chatty-48.png",
        "128": "chatty-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}