ChatGPT File Uploader For Playground

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

ChatGPT File Uploader For Playground là gì?

ChatGPT File Uploader For Playground là một tiện ích mở rộng Chrome được phát triển bởi automatemylife00, và tính năng chính của nó là "A Chrome extension that allows you to upload large files in chunks.".

Ả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 ChatGPT File Uploader For Playground

Tải xuống các tệp mở rộng ChatGPT File Uploader For Playground 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

                        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                    

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

Tên ChatGPT File Uploader For Playground ChatGPT File Uploader For Playground
ID ofekmgemedaofjlkocjlpjddjaanddin
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-file-uploader-for/ofekmgemedaofjlkocjlpjddjaanddin
Mô tả A Chrome extension that allows you to upload large files in chunks.
Kích Thước Tệp 707 KB
Số Lần Cài Đặt 135
Phiên Bản Hiện Tại 1.2.4
Cập Nhật Lần Cuối 2023-08-21
Ngày Phát Hành 2023-08-07
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển automatemylife00
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.youtube.com/@automatemylife00
URL Trang Trợ Giúp https://www.youtube.com/@automatemylife00
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}