A sleek, low-resource custom browser built in C# WinForms with EasyTabs + WebView2.
⚠️ not supported any more.
⚠️ Currently supports Windows only. macOS & Linux are not supported.
- Lightweight, doesn’t hog CPU or GPU
- Modern UI (uses GunaUI and EasyTabs)
- Embeds DuckDuckGo via WebView2
- Dark/Light mode toggle (planned)
- Low-power mode toggle (planned)
- Privacy protection options (planned)
Inspired by CsharpProgramming on YouTube, particularly this video:
➡️ I made a Web Browser
Chomp is built using C# WinForms & .NET. It uses:
- EasyTabs — for tabbed UI in WinForms
- WebView2 — to render web content via DuckDuckGo
- Guna UI — for polished UI styling
- Custom code to manage tabs & HTML parsing
ChompBrowser/
├── Program.cs
├── HTML.cs
├── AppContainer.cs
├── Main.cs
└── Main.Designer.cs
HTML.cshandles custom HTML logicAppContainer.csmanages tabs (EasyTabs integration)Main.csfiles manage the UI and app lifecycle
- .NET Framework 4.8
- WebView2 Runtime
- EasyTabs NuGet package
git clone https://github.com/d3letereal/Chomp_Browser.git
cd Chomp_Browser
# Open solution in Visual Studio, build & run
