ChatGPT & Gemini File Uploader

ChatGPT & Gemini File Uploader

Enhanced PDF file uploader for ChatGPT and Google Gemini with extra features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "version": "2.0.9",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "background",
    "storage",
    "unlimitedStorage",
    "cookies"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "options_page": "src/pages/options/index.html",
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*",
        "*://chatgpt.com/*",
        "*://chat.zhile.io/*"
      ],
      "js": [
        "src/pages/contentInjected/index.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://gemini.google.com/*",
        "*://chat.openai.com/*",
        "*://chatgpt.com/*",
        "*://chat.zhile.io/*"
      ],
      "css": [
        "assets/css/contentStyle1716406778559.chunk.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://gemini.google.com/*",
        "*://chat.openai.com/*",
        "*://chatgpt.com/*",
        "*://chat.zhile.io/*"
      ],
      "js": [
        "src/pages/contentUI/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/pages/interceptor/index.js",
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://gemini.google.com/*",
        "*://chat.openai.com/*",
        "*://chatgpt.com/*",
        "*://chat.zhile.io/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*.google.com/*",
    "*://*.openai.com/*",
    "*://*.chatgpt.com/*",
    "*://localhost/*",
    "*://fileuploader.app/*",
    "*://*.fileuploader.app/*"
  ]
}