ChatGPT File Uploader For Playground

A Chrome extension that allows you to upload large files in chunks.

ChatGPT File Uploader For Playground란 무엇입니까?

ChatGPT File Uploader For Playground은(는) automatemylife00에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that allows you to upload large files in chunks."입니다.

확장 프로그램 스크린샷

screenshot

ChatGPT File Uploader For Playground 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ChatGPT File Uploader is a Chrome extension that allows you to upload large files to https://platform.openai.com/playground?mode=chat in smaller chunks. This can be useful when you need to upload a large file to a ChatGPT that has a character size limit. With File ChatGPT File Uploader, you can split the file into smaller chunks between 1 - 15000 characters and upload them one at a time. The extension adds a button to the page that lets you select a file and automatically splits it into chunks and uploads them for you. 

Currently supports the following file formats:  txt, js , py, css, json, csv.pdf, doc, docx,.xls,.xlsx

If you would like to support my work, you can donate to paypal.me/Automatemylife

if you are interested in how this was made then check out my channel at : https://www.youtube.com/@automatemylife00                    

확장 프로그램 기본 정보

이름 ChatGPT File Uploader For Playground ChatGPT File Uploader For Playground
ID ofekmgemedaofjlkocjlpjddjaanddin
공식 URL https://chromewebstore.google.com/detail/chatgpt-file-uploader-for/ofekmgemedaofjlkocjlpjddjaanddin
설명 A Chrome extension that allows you to upload large files in chunks.
파일 크기 707 KB
설치 횟수 135
현재 버전 1.2.4
최근 업데이트 2023-08-21
출시 날짜 2023-08-07
평점 1.00/5 총 1 개의 평점
개발자 automatemylife00
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.youtube.com/@automatemylife00
도움말 페이지 URL https://www.youtube.com/@automatemylife00
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT File Uploader For Playground",
    "version": "1.2.4",
    "manifest_version": 3,
    "description": "A Chrome extension that allows you to upload large files in chunks.",
    "permissions": [
        "*:\/\/platform.openai.com\/playground?mode=chat*"
    ],
    "action": [],
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/platform.openai.com\/playground?mode=chat*"
            ],
            "js": [
                "content.js",
                "pdf.min.js",
                "pdf.worker.min.js",
                "mammoth.browser.min.js",
                "xlsx.min.js"
            ]
        }
    ]
}