aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLia Lenckowski <lialenck@protonmail.com>2023-08-25 16:36:38 +0200
committerLia Lenckowski <lialenck@protonmail.com>2023-08-25 16:36:38 +0200
commit464fa0f067dfa49680c152260425463cc64581a4 (patch)
tree609d36365173795cedd28ff3543b28b701bf8d64
parent1fedb7f1e73bc56002181775a546e9c2407a8e40 (diff)
downloadfastbangs-464fa0f067dfa49680c152260425463cc64581a4.tar
fastbangs-464fa0f067dfa49680c152260425463cc64581a4.tar.bz2
fastbangs-464fa0f067dfa49680c152260425463cc64581a4.tar.zst
better doc for chrome users
-rw-r--r--frontend/search.ts7
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.")
)
}