Chatty File Uploader

Upload larger text files to ChatGPT

Chatty File Uploader là gì?

Chatty File Uploader là một tiện ích mở rộng Chrome được phát triển bởi Barry Prendergast, và tính năng chính của nó là "Upload larger text files to ChatGPT".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chatty File Uploader

Tải xuống các tệp mở rộng Chatty File Uploader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ⚠️ 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/).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chatty File Uploader Chatty File Uploader
ID hkaeghidfjhncjnajpbmdhpcpfhkacmp
URL Chính Thức https://chromewebstore.google.com/detail/chatty-file-uploader/hkaeghidfjhncjnajpbmdhpcpfhkacmp
Mô tả Upload larger text files to ChatGPT
Kích Thước Tệp 8.94 KB
Số Lần Cài Đặt 51
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2023-05-18
Ngày Phát Hành 2023-05-17
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Barry Prendergast
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}