Neuji

Android & OpenSearch auto-discovery

Most Android browsers (and many desktop ones) support OpenSearch auto-discovery: after you search on a site once, the browser learns that site's search engine and lets you pick it as the default, with no manual URL typing. Neuji serves a standard OpenSearch descriptor for exactly this.

This is the recommended path for Chrome for Android, where you cannot paste a custom engine URL but you can choose an auto-discovered one.

Chrome for Android

  1. Open neuji.com in Chrome for Android and sign in.
  2. Run at least one search on the site (this is what makes Chrome remember Neuji).
  3. Open Chrome → ⋮ → Settings → Search engine.
  4. Under Recently visited, choose Neuji.

Address-bar searches now go to Neuji. (If Neuji does not appear yet, search on the site a couple more times and re-open the setting; Chrome adds recently-used sites that expose a search descriptor.)

How auto-discovery works

Every Neuji page advertises a search descriptor in its <head>:

HTML
<link rel="search" type="application/opensearchdescription+xml" title="Neuji" href="/opensearch.xml" />

and Neuji serves that descriptor at https://neuji.com/opensearch.xml (UK: https://neuji.co.uk/opensearch.xml). It declares the results URL and a private suggestions URL:

XML
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
  <ShortName>Neuji</ShortName>
  <Description>Private, ad-free web search.</Description>
  <Url type="text/html" template="https://neuji.com/search?q={searchTerms}" />
  <Url type="application/x-suggestions+json" template="https://neuji.com/api/autosuggest?q={searchTerms}" />
</OpenSearchDescription>

A browser that implements OpenSearch (Chrome, Firefox, and others) reads this automatically — {searchTerms} is the placeholder it fills with your query. The descriptor is region-aware: it points at whichever site you are on (neuji.com or neuji.co.uk).

Other Android browsers

  • Firefox for Android — supports a fully custom engine; see Firefox.
  • Samsung Internet, Brave, Vivaldi (Android), etc. — most read the same OpenSearch descriptor: search on neuji.com once, then look for Neuji under the browser's search-engine setting.
  • No luck setting a default? Use the native Neuji Android app (and its home-screen search widget) to search Neuji directly.
Was this page helpful?