Help me with - Search Bard Anywhere

Help me with - Search Bard Anywhere

Search Bard AI from Anywhere with Help me with

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_shortname__",
  "version": "1.3.6",
  "options_page": "src/options/options.html",
  "action": {
    "default_icon": "icons/128.png"
  },
  "description": "__MSG_extension_description__",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "https://*.google.com/*"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "MacCtrl+B"
      }
    }
  },
  "omnibox": {
    "keyword": "help"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bard.google.com/*"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/script.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/search_popup/popup.html",
        "src/search_popup/css/popup.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}