diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2023-08-25 16:36:38 +0200 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2023-08-25 16:36:38 +0200 |
commit | 464fa0f067dfa49680c152260425463cc64581a4 (patch) | |
tree | 609d36365173795cedd28ff3543b28b701bf8d64 /frontend | |
parent | 1fedb7f1e73bc56002181775a546e9c2407a8e40 (diff) | |
download | fastbangs-464fa0f067dfa49680c152260425463cc64581a4.tar fastbangs-464fa0f067dfa49680c152260425463cc64581a4.tar.bz2 fastbangs-464fa0f067dfa49680c152260425463cc64581a4.tar.zst |
better doc for chrome users
Diffstat (limited to 'frontend')
-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.") ) } |