search.get()

Gets an array of all installed search engines.

Each search engine returned is identified with a name, which you can pass into search.search() to use that particular engine to make a search.

This is an asynchronous function that returns a Promise.

Syntax

js
let gettingEngines = browser.search.get()

Parameters

None.

Return value

A Promise that will be fulfilled with an array of search engine objects. Each search engine object may contain the following properties:

name

string. The search engine's name.

isDefault

boolean. true if the search engine is the default. Only one search engine can be the default at any given time.

alias Optional

string. If a search engine has an alias, the user can search with a particular search engine by entering the alias in address bar before the search term. For example, if the Wikipedia engine has an alias "wk", the user can search Wikipedia for pandas by entering "wk pandas" in the address bar. The alias is sometimes also called a "keyword".

favIconUrl Optional

string. The search engine's icon, as a data: URL.

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Firefox for Android
Safari on iOS
get

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
No support
No support

Examples

Get all installed search engines:

js
function retrieved(results) {
  console.log(`There were: ${results.length} search engines retrieved.`);
  const defaultEngine = results.find((searchEngine) => searchEngine.isDefault);
  console.log(`The default search engine is ${defaultEngine.name}.`);
  for (const searchEngine of results) {
    console.log(searchEngine.name);
  }
}

browser.search.get().then(retrieved);

Example extensions