In this guide we will do a VERY basic setup of the Gemma3 LLM, using Ollama, on Windows. It should work well on a variety of systems, including modern Nvidia GPUs and newer macOS systems.
There's many choices available; go to https://ollama.com/library for a list of options.
Social Stream Ninja targets Gemma3:1B by default, but you can specify the model to use in the Social Stream Ninja menu. For now though, let's just use gemma3:1b
To install the model, let's open Command Prompt (or Terminal)
> ollama pull gemma3:1b
Once it finishes installing the model, the option to list available installed models should confirm it.
If you need to remove it, you can run ollama rm gemma3:1b.
It will be available for API access by default at http://localhost:11434, which if you open via the browser, it should say Ollama is running. However, there are still issues with CORS we need to deal with if using the Chrome extension. That is, by default, Ollama won't listen to requests made by a Chrome extension.
To get around this CORS issue, for Windows, you can try closing Ollama.exe from the taskbar, and then run the following:
ollama serve stop
taskkill /F /IM ollama.exe
set OLLAMA_ORIGINS=chrome-extension://*
ollama serve
To make this CORS permission permanent on Windows, you need to add OLLAMA_ORIGINS=chrome-extension://* to the Windows user environment system variables. Then start/restart ollama; ollama serve.
This allows us to access Ollama from our Social Stream Ninja extension.
I don't believe you need to worry about CORS if using the Social Stream Ninja standalone app, HOWEVER, if you are using the standalone app, and are running into issues, you can set the OLLAMA_ORIGINS to *. If you're comfortable, you can do this via the "Edit the system environment variables" in Windows, instead of via command line. Be sure to close and re-open Ollama if you do this however. Below is how I have it setup, and it works with both extension AND standalone app.
If you want to access Ollama directly via the dock.html page, with custom.js commands, you may need to host Ollama behind a reverse proxy service. Refer to their documentation for info on this.
To use the AI Chat bot mode, just make sure the toggle is on, and that you have Ollama with gemma3:1b installed/running locally, and you should be good to go now.
The Bot will respond automatically to chat if it thinks it's a good idea. There is a 5-second timeout per source site.
The features and menu for the AI bot options are evolving weekly, so the instructions may not always mirror the current menu/options.
There's already a lot of options beyond just a chat bot, including censorship options, summary options, RAG search, and far more.
- Steve ps. BLARGH!







