ChatGPT Sidebar & File Uploader

ChatGPT Sidebar & File Uploader

ChatGPT Sidebar & File Uploader helps you to use ChatGPT-3.5 and GPT-4 in every tab and chat with PDF or any other file easily.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "description": "__MSG_extShortDesc__",
  "homepage_url": "https://chatgptextension.ai",
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "32": "assets/images/icon32.png",
      "48": "assets/images/icon48.png",
      "128": "assets/images/icon128.png"
    }
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "./src/html/options.html"
  },
  "default_locale": "en",
  "icons": {
    "32": "assets/images/icon32.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "manifest_version": 3,
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "scripting",
    "activeTab",
    "unlimitedStorage",
    "tabs",
    "sidePanel"
  ],
  "side_panel": {
    "default_path": "./src/html/side_panel.html"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*.png",
        "*.svg",
        "*.otf",
        "*.mp4",
        "*.webm",
        "./assets/fonts/*.otf",
        "*.woff",
        "./assets/fonts/*.woff",
        "./assets/images/*",
        "./assets/images/**/*.jpg",
        "./assets/images/**/*.png",
        "./assets/images/**/*.svg",
        "./assets/**/*.mp4",
        "./assets/**/*.webm",
        "./assets/**/*.otf",
        "./assets/**/*.png",
        "./assets/**/*.svg",
        "./assets/videos/*",
        "./assets/videos/**/*.mp4",
        "./assets/videos/**/*.webm"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/Storage.js",
        "assets/FileButton.js",
        "assets/EditToolsUploadModalActionSection.js",
        "assets/content.ts.js",
        "assets/product_details.js.js"
      ],
      "use_dynamic_url": true
    },
    {
      "resources": [
        "/plugins/chatgpt_file_uploader/assets/js/*.js",
        "/plugins/chatgpt_file_uploader/assets/css/*.css",
        "/plugins/chatgpt_file_uploader/icon-128.png",
        "/plugins/chatgpt_file_uploader/icon-34.png"
      ],
      "matches": [
        "https://chat.openai.com/*",
        "https://chat.zhile.io/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "assets/content.ts-loader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "css": [
        "assets/FileButton.css",
        "assets/content.css"
      ]
    },
    {
      "js": [
        "assets/product_details.js-loader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chat.zhile.io/*"
      ],
      "js": [
        "/plugins/chatgpt_file_uploader/src/pages/content/index.js"
      ],
      "css": [
        "/plugins/chatgpt_file_uploader/assets/css/contentStyle.chunk.css"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "4.0.8"
}