Is it possible to set the default search engine via config? #133
Replies: 2 comments 2 replies
|
It looks like you can set the default search engine with the glide.pref.set('browser.urlbar.placeholderName', 'DuckDuckGo')So if you want to use a search engine that is already defined or defined by an extension, that should work.
Unfortunately you cannot customise the manifest.json for the builtin extension that the |
2 replies
|
In 0.1.57a this is possible! This is what I needed to have the default search be Brave. glide.search_engines.add({
name: "Brave",
keyword: "b",
search_url: "https://search.brave.com/search?q={searchTerms}",
is_default: true
}) |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
It seems this used to be in the about config but no longer. I've seen speculation that you could do it programmatically. With glide, is it possible to set the default search engine without right clicking search boxes, adding it, etc?
chrome_settings_override(mozilla).(await browser.runtime.getManifest()).chrome_settings_overrides.Maybe the more broad question is 'Is it possible to set manifest values via config?'
All reactions