HotBot Search with AI

HotBot Search with AI

Ask HotBot A.I. a question, set HotBot as your homepage and default search engine.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "HotBot Search with AI",
  "short_name": "HotBot AI Search",
  "version": "1.3.3",
  "description": "Ask HotBot A.I. a question, set HotBot as your default search engine.",
  "background": {
    "scripts": [
      "worker/worker.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.hotbot.com/*"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "img/hb-icon-16px.png",
    "default_popup": "pop.html",
    "default_title": "HotBot AI Search"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "encoding": "UTF-8",
      "favicon_url": "https://www.hotbot.com/favicon.ico",
      "is_default": true,
      "keyword": "HotBot",
      "name": "HotBot",
      "search_url": "https://www.hotbot.com/web/ex?q={searchTerms}",
      "suggest_url": "https://www.hotbot.com/ajax/sug.json?sc=ext&q={searchTerms}"
    }
  },
  "icons": {
    "16": "img/hb-icon-16px.png",
    "32": "img/hb-icon-32px.png",
    "48": "img/hb-icon-48px.png",
    "96": "img/hb-icon-96px.png",
    "128": "img/hb-icon-128px.png",
    "256": "img/hb-icon-256px.png",
    "512": "img/hb-icon-512px.png"
  },
  "homepage_url": "https://www.hotbot.com/app",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "*://www.hotbot.com/web/ex*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{166d230d-d5fe-4b7c-a38d-c6df93d72af0}"
    }
  }
}