Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3a3edf8

Browse files
committedAug 14, 2023
Use Ecosia as Default Search Provider in Chrome
1 parent 970e1f3 commit 3a3edf8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎os2borgerpc/chrome/chrome_install.sh

+12
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@
3434
# RestoreOnStartup: Controls what happens on startup. Also prevents users from changing the startup URLs when reopening the browser without logging out of the OS first. Possibly not needed with Guest mode, incognito or ephemeral.
3535
# RestoreOnStartupURLs: This is, confusingly, what can actually control the homepage, but only if RestoreOnStartup is set to "4".
3636
#
37+
# Search:
38+
# DefaultSearchProviderEnabled: Default search is performed when a user enters non-URL text in the address bar. The default search provider can not be changed by a user.
39+
# DefaultSearchProviderIconURL: Specifies the default search provider's favorite icon URL.
40+
# DefaultSearchProviderName: Specifies the default search provider's name.
41+
# DefaultSearchProviderSearchURL: Specifies the URL of the search provider used during a default search.
42+
# DefaultSearchProviderSuggestURL: Specifies the URL of the search provider to provide search suggestions.
43+
#
3744
# Various:
3845
# BrowserGuestModeEnabled: Allow people to start a guest session, if they want, so history isn't even temporarily recorded. Not crucial.
3946
# BrowsingDataLifetime: Continuously remove all browsing data after 1 hour (the minimum possible),
@@ -131,6 +138,11 @@ cat > "$POLICY" <<- END
131138
}
132139
],
133140
"DefaultBrowserSettingEnabled": false,
141+
"DefaultSearchProviderEnabled": true,
142+
"DefaultSearchProviderIconURL": "https://cdn-static.ecosia.org/static/icons/favicon.ico",
143+
"DefaultSearchProviderName": "Ecosia",
144+
"DefaultSearchProviderSearchURL": "https://ecosia.org/search?q={searchTerms}",
145+
"DefaultSearchProviderSuggestURL": "https://ac.ecosia.org/autocomplete?q={searchTerms}&type=list",
134146
"DeveloperToolsAvailability": 2,
135147
"EnableMediaRouter": false,
136148
"ExtensionInstallBlocklist": [

0 commit comments

Comments
 (0)
Please sign in to comment.