Chatty File Uploader

Upload larger text files to ChatGPT

Τι είναι το Chatty File Uploader;

Το Chatty File Uploader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Barry Prendergast, και η κύρια λειτουργία του είναι "Upload larger text files to ChatGPT".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Chatty File Uploader

Λήψη αρχείων επέκτασης Chatty File Uploader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ⚠️ 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"
            ]
        }
    ]
}