diff options
author | Maciej Zygmanowski <sppmacd@pm.me> | 2021-04-30 17:35:35 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-30 17:57:22 +0200 |
commit | 6a12420d9dbc266f5cd1e8e18e0c2bcead423156 (patch) | |
tree | babc6dc1da8a4eb8f105a2331dcfabe039fc9cab /Userland | |
parent | cd9be1733cf3a7b9cd3865ae4e375c7f025e6cd8 (diff) | |
download | serenity-6a12420d9dbc266f5cd1e8e18e0c2bcead423156.zip |
Browser: Add FrogFind search engine
FrogFind is a search engine for very old computers and can be
loaded and rendered correctly by Serenity Browser :^)
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Applications/Browser/Tab.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/Browser/Tab.cpp b/Userland/Applications/Browser/Tab.cpp index b6705daea1..795cd527f1 100644 --- a/Userland/Applications/Browser/Tab.cpp +++ b/Userland/Applications/Browser/Tab.cpp @@ -441,6 +441,7 @@ Tab::Tab(Type type) // FIXME: Support adding custom search engines add_search_engine("Bing", "https://www.bing.com/search?q={}"); add_search_engine("DuckDuckGo", "https://duckduckgo.com/?q={}"); + add_search_engine("FrogFind", "http://frogfind.com/?q={}"); add_search_engine("GitHub", "https://github.com/search?q={}"); add_search_engine("Google", "https://google.com/search?q={}"); add_search_engine("Yandex", "https://yandex.com/search/?text={}"); |