Bard Sidebar - Google Bard at Your Fingertips

Bard Sidebar - Google Bard at Your Fingertips

Access Google Bard with a single click or Ctrl+B with the Bard Sidebar Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Access Google Bard with a single click or Ctrl+B with the Bard Sidebar Chrome extension",
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "Bard Sidebar - Google Bard at Your Fingertips",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "Click to open panel"
  },
  "side_panel": {
    "default_path": "panel.html",
    "openPanelOnActionClick": true
  },
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "images/128.png",
        "images/48.png",
        "images/16.png"
      ],
      "matches": []
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "sidePanel",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequestFeedback"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "windows": "Ctrl+B",
        "mac": "Command+B",
        "chromeos": "Ctrl+B",
        "linux": "Ctrl+B"
      },
      "description": "Run \"Sidebard\" on the current page."
    }
  }
}