chromium

The official GitHub mirror of the Chromium source (by chromium)

Chromium Alternatives

Similar projects and alternatives to chromium

  1. Visual Studio Code

    Visual Studio Code

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. uBlock

    3,020 chromium VS uBlock

    uBlock Origin - An efficient blocker for Chromium and Firefox. Fast and lean.

  4. rust

    2,812 chromium VS rust

    Empowering everyone to build reliable and efficient software.

  5. brave-browser

    1,388 chromium VS brave-browser

    Brave browser for Android, iOS, Linux, macOS, Windows.

  6. Fenix

    752 chromium VS Fenix

    Discontinued ⚠️ Fenix (Firefox for Android) moved to a new repository. It is now developed and maintained as part of: https://github.com/mozilla-mobile/firefox-android

  7. user.js

    694 chromium VS user.js

    Firefox privacy, security and anti-tracking: a comprehensive user.js template for configuration and hardening

  8. bromite

    Bromite is a Chromium fork with ad blocking and privacy enhancements; take back your browser!

  9. InfluxDB

    InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.

    InfluxDB logo
  10. lbry-desktop

    471 chromium VS lbry-desktop

    A browser and wallet for LBRY, the decentralized, user-controlled content marketplace.

  11. ungoogled-chromium

    Google Chromium, sans integration with Google

  12. serenity

    263 chromium VS serenity

    The Serenity Operating System 🐞

  13. WebKit

    176 chromium VS WebKit

    Home of the WebKit project, the browser engine used by Safari, Mail, App Store and many other applications on macOS, iOS and Linux.

  14. carbon-lang

    Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)

  15. Servo

    169 chromium VS Servo

    Servo aims to empower developers with a lightweight, high-performance alternative for embedding web technologies in applications.

  16. STL

    162 chromium VS STL

    MSVC's implementation of the C++ Standard Library.

  17. Bazel

    146 chromium VS Bazel

    a fast, scalable, multi-language and extensible build system

  18. Folly

    98 chromium VS Folly

    An open-source C++ library developed and used at Facebook.

  19. floc

    92 chromium VS floc

    Discontinued This proposal has been replaced by the Topics API.

  20. gecko-dev

    81 chromium VS gecko-dev

    Read-only Git mirror of the Mercurial gecko repositories at https://hg.mozilla.org. How to contribute: https://firefox-source-docs.mozilla.org/contributing/contribution_quickref.html

  21. termux-packages

    A package build system for Termux.

  22. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better chromium alternative or higher similarity.

chromium discussion

Log in or Post with

chromium reviews and mentions

Posts with mentions or reviews of chromium. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-04-06.
  • Max severity RCE flaw discovered in widely used Apache Parquet
    5 projects | news.ycombinator.com | 6 Apr 2025
    Standard operating procedure for both the Chrome [https://chromium.googlesource.com/chromium/src/+/HEAD/docs/s...] and Firefox [https://www.mozilla.org/en-US/about/governance/policies/secu...] bug tracking systems.

    But the fix itself is public in both the Chrome [https://chromium.googlesource.com/chromium/src.git/+/36dbbf3...] and Firefox [https://github.com/mozilla/gecko-dev/commit/ac605820636c3b96...] source repos, and it makes pretty clear what the bug is.

  • Show HN: I built a Rust crate for running unsafe code safely
    5 projects | news.ycombinator.com | 6 Apr 2025
    My starting point would be Chromium's documentation, as - presumably - chrome is one of the most widely used and battle tested, user-facing, third party sandboxes running on end user machines.

    Windows: https://chromium.googlesource.com/chromium/src/+/main/docs/d...

    Linux: https://chromium.googlesource.com/chromium/src/+/main/sandbo...

    OS X: https://chromium.googlesource.com/chromium/src/+/main/sandbo...

    With the caveat that I wouldn't necessairly assume this is the cutting edge at this point, and there might be other resources to invest in for server-side sandboxing involving containers or hypervisors, and that I've only actually engaged with the Windows APIs based on that reading.

    I wrote `firehazard` ( https://docs.rs/firehazard/ , https://github.com/MaulingMonkey/firehazard/tree/master/exam... ) to experiment with wrapping the Windows APIs, document edge cases, etc. - although if the long list of warnings in the readme doesn't scare you away, it'll hopefully at least confirm I hesitate to recommend my own code ;)

  • What should Frontend Developer really know?
    1 project | dev.to | 6 Apr 2025
    It's ok if something doesn't look familiar at the moment. You should google it right away. Or check some source code of v8.
  • Today Google bricked my Chromebook by force-installing a hidden extension
    2 projects | news.ycombinator.com | 29 Mar 2025
    The source is available: https://chromium.googlesource.com/chromium/src/+/refs/tags/1...

    It’s not “training an AI model on screen contents without consent.”

    It is a stupid feature for Google to enable by default: likely what’s making OP’s machine useless is that it’s running an OCR inference model on the OP’s images to index them for search.

    Go to chrome://flags and disable “Enable OCR For Local Image Search” and I bet the problem goes away. The AI Service does have a few other features, but that’s the one that’s likely to be cooking the machine.

    As for the other comments on this thread, I doubt there’s anything to do with GDPR here. It’s all local.

  • Writing your own C++ standard library from scratch
    8 projects | news.ycombinator.com | 25 Mar 2025
    The license was explicitly chosen to enable code sharing with LLVM's libc++ (https://devblogs.microsoft.com/cppblog/open-sourcing-msvcs-s...).

    The MSVC STL's quality is good enough for thousands of pieces of Windows software (including Windows itself & Microsoft's software such as Office) to depend and rely on. It delivers excellent performance for a broad range of use cases. It is actively developed in the open, delivering cutting-edge (C++23 & C++26) features, accepting Pull Requests and wonderfully documented on GitHub. It can be consumed using MSVC and LLVM clang-cl (which the MSVC STL maintainers test with CI infrastructure). The maintainers are actively working on "hardening" features to enable more secure C++ (https://github.com/microsoft/STL/wiki/STL-Hardening).

    Unless you specify what "best" or "a library's quality" means to you, MSVC STL is excellent and because of that, the default choice on & for Windows.

    Google chooses to only support libc++ for Chrome/Chromium (https://chromium.googlesource.com/chromium/src/+/main/docs/t...). libc++ is not a Google-owned project.

  • I-cant-believe-its-not-webusb: Hacking around lack of WebUSB support in Firefox
    12 projects | news.ycombinator.com | 14 Mar 2025
    That was my very first concern when I thought about WebUSB too, but Chromium has a block list of Vendor IDs which includes various security keys.

    https://chromium.googlesource.com/chromium/src/+/967d11212c9...

  • The DOJ Still Wants Google to Sell Off Chrome
    4 projects | news.ycombinator.com | 8 Mar 2025
    > that cannot be overridden

    I thought I knew better, because the webview implementation can be changed in the system preferences, but (of course) the list of package names that can appear there is hardcoded:

    https://chromium.googlesource.com/chromium/src/+/HEAD/androi...

  • Show HN: BadSeek" and How to Backdoor Large Language Models
    3 projects | news.ycombinator.com | 20 Feb 2025
    well, not everyone has hardware to build large software anyway. like chrome requires 20+ cores and 64+ gb ram

    - https://chromium.googlesource.com/chromium/src/+/main/docs/w...

  • New Speculative Attacks on Apple CPUs
    2 projects | news.ycombinator.com | 28 Jan 2025
    To be fair, this is (relatively, compared to the age of the web) new behavior though.

    Even Chrome, which pioneered the "tab per process" model, didn't isolate same browsing group context sites for a long time, and still shares processes on Android as a resource optimization: https://chromium.googlesource.com/chromium/src/+/main/docs/p...

    Firefox only released their "Project Fission" in 2021, i.e. three years after Spectre.

  • Build a Database in Four Months with Rust and 647 Open-Source Dependencies
    4 projects | news.ycombinator.com | 15 Jan 2025
  • A note from our sponsor - SaaSHub
    www.saashub.com | 24 Apr 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic chromium repo stats
247
20,487
10.0
about 22 hours ago

Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that C++ is
the 7th most popular programming language
based on number of references?