1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:18:12 +00:00

Browser: Move search engine definitions to a json file

This both makes them configurable, and means that we can read them from
other applications, such as BrowserSettings. :^)
This commit is contained in:
Sam Atkins 2021-11-24 20:35:25 +00:00 committed by Andreas Kling
parent 1933076143
commit e927048754
2 changed files with 62 additions and 22 deletions

View file

@ -0,0 +1,26 @@
[
{
"title": "Bing",
"url_format": "https://www.bing.com/search?q={}"
},
{
"title": "DuckDuckGo",
"url_format": "https://duckduckgo.com/?q={}"
},
{
"title": "FrogFind",
"url_format": "https://frogfind.com/?q={}"
},
{
"title": "GitHub",
"url_format": "https://github.com/search?q={}"
},
{
"title": "Google",
"url_format": "https://google.com/search?q={}"
},
{
"title": "Yandex",
"url_format": "https://yandex.com/search/?text={}"
}
]