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