Skip to content

Ollama quick start in Chrome or Firefox

Ollama Client lets you chat with a local LLM from the browser side panel. The fastest path is: start a local provider, install the extension, choose a model, and send your first message.

Use any supported local or OpenAI-compatible server.

Terminal window
ollama serve
ollama pull llama3.2

Default URL: http://localhost:11434

Open LM Studio, start the local server, and load a model.

Default URL: http://localhost:1234/v1

Terminal window
llama-server -m ~/Library/Caches/llama.cpp/model.gguf --port 8000 --host 0.0.0.0

Default URL: http://localhost:8000/v1

Install the extension, open the side panel, and go to Setup if the provider connection is not detected automatically.

Use Provider Setup for full provider-specific configuration.

Open the model selector and choose a model from your provider. If a model list is empty, check that the provider is running and that the base URL matches the server.

Ask a normal question. Ollama Client streams the answer into the side panel and stores the chat locally.

After the first chat works, enable the context controls you need:

  • Page & tabs for current-page and tab context.
  • Knowledge & web for uploaded files, local RAG, and optional web search.
  • Privacy & permissions for browser permissions and model-callable tools.

Firefox and strict local servers may reject browser-extension origins. For Ollama, set:

Terminal window
OLLAMA_ORIGINS="chrome-extension://*,moz-extension://*" ollama serve

See Fix Ollama CORS errors.

Confirm the provider is running, the base URL is correct, and at least one model is available locally.

Tool calling depends on model capability plus the enabled tool family settings. Check Privacy & permissions for the live tool inventory.

No. Ollama Client works with local and self-hosted providers. OpenAI-compatible means the server speaks the OpenAI API shape; it does not require OpenAI.

Yes. Chat history is stored locally in browser extension storage.

Can I use this as an Open WebUI alternative?

Section titled “Can I use this as an Open WebUI alternative?”

Yes, if you want a browser extension and side panel instead of a self-hosted web app.