Gemini AI Google

Enhance your web exploration with our extension, the bridge to engaging directly with Google's advanced Gemini technology.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "version": "1.2.2",
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_desciption__",
  "short_name": "__MSG_ext_name__",
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_ext_name__",
    "default_icon": {
      "16": "images/16.png",
      "48": "images/48.png",
      "128": "images/128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "openWindow": {
      "description": "AI Chat for Gemini Google, Powered by PaLM 2 for Gemini AI",
      "suggested_key": {
        "default": "Ctrl+B",
        "windows": "Ctrl+B",
        "mac": "Command+B",
        "chromeos": "Ctrl+B",
        "linux": "Ctrl+B"
      }
    }
  },
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "update_url": "https://clients2.google.com/service/update2/crx"
}