mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:47:34 +00:00
Base: Remove FrogFind from the new tab page
Search queries no longer work for this engine, and FireFox even issues a security warning on their home page.
This commit is contained in:
parent
66e1f8cdab
commit
27fa029537
1 changed files with 0 additions and 4 deletions
|
@ -46,7 +46,6 @@
|
|||
<div id="search-buttons">
|
||||
<button type="button" onclick="search('bing')">Bing</button>
|
||||
<button type="button" onclick="search('duckduckgo')">DuckDuckGo</button>
|
||||
<button type="button" onclick="search('frogfind')">FrogFind</button>
|
||||
<button type="button" onclick="search('github')">GitHub</button>
|
||||
<button type="button" onclick="search('google')">Google</button>
|
||||
<button type="button" onclick="search('wiby')">Wiby</button>
|
||||
|
@ -78,9 +77,6 @@
|
|||
} else if (searchEngine == "duckduckgo") {
|
||||
url = new URL("https://duckduckgo.com");
|
||||
url.searchParams.set("q", query);
|
||||
} else if (searchEngine == "frogfind") {
|
||||
url = new URL("https://frogfind.com");
|
||||
url.searchParams.set("q", query);
|
||||
} else if (searchEngine == "github") {
|
||||
url = new URL("https://github.com/search");
|
||||
url.searchParams.set("q", query);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue