Kiwi Browser: Chromium-based mobile browser
Archived Chromium fork for Android with extension support.
Learn more about src.next
Kiwi Browser is a Chromium-based mobile web browser fork specifically architected to maintain support for Manifest V2 extensions on Android devices beyond Google's official deprecation timeline. The implementation modifies Chromium's extension service layer by overriding manifest version validation checks, allowing both V2 and V3 extensions to load without triggering deprecation warnings or blocking mechanisms. The browser achieves backward compatibility by patching the extension loading pipeline to bypass temporal restrictions that would otherwise prevent older extension formats from executing. This architectural approach preserves the existing Chrome extension ecosystem for mobile users while maintaining the core Chromium rendering engine and security model. The modification represents a deliberate trade-off prioritizing extension compatibility over alignment with upstream Chromium's extension platform evolution.
Automated Chromium Rebase
Continuously integrates upstream Chromium updates through automated source tree synchronization. Maintains compatibility with current security patches and features without manual version tracking or fork maintenance.
Manifest V2 Support
Retains full Manifest V2 extension compatibility on Android after standard Chromium deprecation. Enables broader extension ecosystem access including legacy extensions incompatible with Manifest V3 restrictions.
Archived Project Status
Active development ceased January 2025 with no planned updates or security patches. Final release remains available, but users requiring ongoing support should migrate to actively maintained alternatives like Edge, Vivaldi, or Firefox.
// Check if Manifest V2 extension is supported
const extensionInfo = {
manifestVersion: 2,
id: 'custom-extension-id'
};
const isSupported = chrome.runtime.getManifest().manifest_version >= 2;
if (isSupported) {
console.log('V2 extensions supported in Kiwi Browser');
}Top in Mobile & Desktop
Related Repositories
Discover similar tools and frameworks used by developers
Shizuku
Android framework enabling apps to access system APIs with elevated privileges via ADB or root.
AAAD
Android app for installing third-party Android Auto apps without root or developer settings.
React Native Video
Native iOS/Android video playback with streaming and DRM.
React Native
JavaScript framework rendering React as native iOS and Android UI.
draw.io Desktop
Electron-based desktop diagramming app wrapping draw.io editor for offline use with local storage.
Related Reading
Guides and comparisons from the Greptile content library
What is Shift Left Testing? Everything Engineering Leaders Need to Know
The five types of shift-left testing, the benefits and limitations of each, and how the approach changes when agents write and review a growing share of your code.
Best Code Review Tools in 2026
The best code review tools in 2026, compared on pricing, features, deployment options, and ideal use cases for teams of any size.
Best AI Code Review Tools for GitLab
Enterprise-grade AI code review tools for GitLab teams. In-depth comparison of accuracy, security, and integration features to accelerate your merge request workflows.
Best Security-Focused AI Code Review Tools [2026 Guide]
The six best security-focused AI code review tools, compared on SAST, SCA, DAST, and full-repo context, so you can pick the one that fits your codebase and your cycle times.