Tired of "You won't believe what happened next" posts? This Chrome extension uses AI to detect and blur clickbait on Twitter/X.
Scans tweets as you scroll and blurs the ones that look like clickbait. You can still click "Show anyway" if you really want to see them.
Works with local AI (Ollama) so your data never leaves your computer, or cloud providers if you prefer.
-
Clone the repo:
git clone https://github.com/sharifli4/clickbait-hider.git cd clickbait-hider -
Open Chrome and go to
chrome://extensions/ -
Enable Developer mode (toggle in the top right corner)
-
Click Load unpacked and select the
clickbait-hiderfolder -
The extension icon should appear in your toolbar. Click it to configure your AI provider.
You need Ollama running locally. Get it from ollama.com.
ollama pull llama3.2Then allow Chrome extensions to connect:
Linux:
sudo mkdir -p /etc/systemd/system/ollama.service.d
echo '[Service]
Environment="OLLAMA_ORIGINS=chrome-extension://*"' | sudo tee /etc/systemd/system/ollama.service.d/override.conf
sudo systemctl daemon-reload
sudo systemctl restart ollamaMac:
OLLAMA_ORIGINS="chrome-extension://*" ollama serveWindows:
Add OLLAMA_ORIGINS=chrome-extension://* to your environment variables and restart Ollama.
Also supports OpenAI and Anthropic if you have API keys. Just pick your provider in settings.
With Ollama, everything runs locally. With cloud providers, tweet text gets sent to their API. Nothing is stored or tracked by the extension itself.