Chatty File Uploader

Upload larger text files to ChatGPT

Chatty File Uploader란 무엇입니까?

Chatty File Uploader은(는) Barry Prendergast에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Upload larger text files to ChatGPT"입니다.

확장 프로그램 스크린샷

screenshot

Chatty File Uploader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}