Gemini AI chat

Gemini AI chat

Access to the Gemini AI Chat

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Gemini AI chat",
  "version": "1.0.0",
  "description": "Access to the Gemini AI Chat",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/16.png",
      "48": "images/48.png",
      "128": "images/128.png"
    },
    "default_title": "Gemini AI Chatbot"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*.gemini.google.com/*"
      ]
    }
  ],
  "permissions": [],
  "commands": {
    "openWindow": {
      "suggested_key": {
        "default": "Ctrl+G",
        "mac": "Command+G",
        "chromeos": "Ctrl+G",
        "linux": "Ctrl+G",
        "windows": "Ctrl+G"
      },
      "description": "AI Chat for Gemini by Google, Powered by Gemini AI"
    }
  },
  "update_url": "https://clients2.google.com/service/update2/crx"
}