diff options
Diffstat (limited to 'frontend/search.ts')
-rw-r--r-- | frontend/search.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/frontend/search.ts b/frontend/search.ts index 02d8582..de5a5af 100644 --- a/frontend/search.ts +++ b/frontend/search.ts @@ -5,7 +5,12 @@ import { status } from "./ui.ts" export function section_info_search() { return e("section", { class: "info" }, e("h2", {}, "Setup"), - e("p", {}, "To install this as the default search engine, select \"Add Fastbangs\" in the context-menu of the URL-bar.") + e("p", {}, "To register this search engine in your browser:"), + e("ul", {}, + e("li", {}, "In Firefox, right click your URL bar and select \"Add Fastbangs\""), + e("li", {}, "In Chrome, go to your search engine settings, and activate \"Fastbangs\" as an engine, which should be present in the list of \"Inactive shortcuts\".") + ), + e("p", {}, "After that, you can optionally set this as a default engine, so you can search right from your URL bar.") ) } |