Bard AI - Boots productivity

Bard AI - Boots productivity

Discover a new way to interact with Google search results through Bard AI's revolutionary chat feature. Transform your search experience from a mundane task to an engaging conversation that provides you with the

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "3.1.6",
  "manifest_version": 2,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "permissions": [
    "storage",
    "https://*.openai.com/",
    "https://*.google.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://google.com/*",
        "https://*.google.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{89a3868c-66c1-4ea6-a416-4e6e6c7cd888}"
    }
  }
}