GetBotAI: GPT-3/GPT-4 & GeminiPro & Calude 3

GetBotAI: GPT-3/GPT-4 & GeminiPro & Calude 3

Your personal AI chatbot to accompany you on your web journey

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "3.2.8",
  "name": "GetBotAI: GPT-3/GPT-4 & GeminiPro & Calude 3",
  "description": "Your personal AI chatbot to accompany you on your web journey",
  "action": {
    "default_icon": "assets/logo.png"
  },
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "background": {
    "service_worker": "background/index.js"
  },
  "commands": {
    "open-chat": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      },
      "description": "Open a chat window on the current page or navigate to GetBot domain by pressing above commands"
    }
  },
  "content_scripts": [
    {
      "js": [
        "content/index.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.getbot.ai/*",
        "*://getbot.ai/*"
      ]
    },
    {
      "js": [
        "content/proxy.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "sidePanel"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}