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ファイルをダウンロード

ChatGPT File Uploader For Playground拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}