Chrome extension that uses AI to filter negative/toxic posts from your X (Twitter) feed.
Create a Supabase project and run the SQL in supabase/migrations/.
Edit background.js:
const SUPABASE_URL = 'https://YOUR_PROJECT.supabase.co';
const SUPABASE_ANON_KEY = 'your-anon-key';
const AI_CONFIG = {
provider: 'openai', // or 'groq'
openai: {
apiKey: 'sk-your-key',
// ...
}
};- Go to
chrome://extensions/ - Enable Developer mode
- Click Load unpacked → select this folder
Browse X. Negative posts get blurred automatically. Click "Show anyway" to reveal.
- OpenAI gpt-4o-mini: ~$0.15/1M tokens
- Groq llama-3.1-8b: free tier available
MIT