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.”。
擴展截圖
下載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 擴展基本資訊
| 名稱 | |
| ID | ofekmgemedaofjlkocjlpjddjaanddin |
| 官方網址 | 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"
]
}
]
} | |