Chrome for Android still doesn't support extensions in 2026. Here's what's actually available if you want extension-like functionality on mobile.
The Reality Check
Google has explicitly said Chrome extensions won't come to Android. Their position hasn't changed. So if mobile is important to your product, you need alternatives.
Option 1: Firefox for Android + Extension Support
Firefox on Android does support extensions. Not perfectly, and not all APIs work, but the big ones do:
- Content scripts
- Background service workers (limited)
- Browser actions
- Popup pages
If your extension is primarily content-script based, there's a good chance it works.
Option 2: Kiwi Browser
Third-party browser that attempted full Chrome extension support. Quality is inconsistent and it hasn't been updated much recently. But for some extensions it's still the best mobile option.
Option 3: Progressive Web Apps (PWA)
If your extension functionality can live in a PWA, that's often the better mobile play. Users install it to their home screen, it works offline, and you control the experience without browser limitations.
Option 4: Native App Wrapper
For serious functionality, a lightweight Android app bundled with your extension's core logic can provide a unified experience. Use shared storage (via your own backend) to keep data in sync.
Real Talk
For most extension developers, mobile isn't worth the engineering cost right now. The audience on desktop Chrome is still where the engagement is. Build your extension for desktop first, and only expand to mobile if you have clear user demand.
Top comments (0)