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:
parent
1933076143
commit
e927048754
2 changed files with 62 additions and 22 deletions
26
Base/home/anon/.config/SearchEngines.json
Normal file
26
Base/home/anon/.config/SearchEngines.json
Normal 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={}"
|
||||
}
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue