ChatGPT File Uploader For Playground

ChatGPT File Uploader For Playground

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

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}