ChatGPT Documents Uploader

ChatGPT Documents Uploader

Upload several filetypes including docx, pdf, txt and much more to ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Documents Uploader",
  "version": "1.0",
  "description": "Upload several filetypes including docx, pdf, txt and much more to ChatGPT",
  "action": {
    "default_icon": {
      "128": "images/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "mammoth.browser.min.js",
        "pdf.min.js",
        "pdf.worker.min.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "images/icon128.png"
  }
}