Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Brave search engine to Homepage Search #1438

Open
wants to merge 1 commit into
base: 2.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lang/en/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
'options.google' => 'Google',
'options.ddg' => 'DuckDuckGo',
'options.bing' => 'Bing',
'options.brave' => 'Brave',
'options.qwant' => 'Qwant',
'options.startpage' => 'StartPage',
'options.yes' => 'Yes',
Expand Down Expand Up @@ -114,4 +115,4 @@
'alert.success.user_restored' => 'User restored successfully',
'dashboard.reorder' => 'Reorder and pin items',
'dashboard.settings' => 'Settings',
);
);
8 changes: 8 additions & 0 deletions storage/app/searchproviders.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ bing:
target: _blank
query: q

brave:
id: brave
url: https://search.brave.com/search
name: Brave
method: get
target: _blank
query: q

ddg:
id: ddg
url: https://duckduckgo.com/
Expand Down