https://github.com/slt-world/slbr
A lightweight WPF C# browser for a faster web. Fast, lightweight browsing with a clean interface.
https://github.com/slt-world/slbr
browser c-sharp cef cefsharp cefsharp-wpf chromium chromium-embedded-framework web-browser webbrowser webview2 wpf
Last synced: 19 days ago
JSON representation
A lightweight WPF C# browser for a faster web. Fast, lightweight browsing with a clean interface.
- Host: GitHub
- URL: https://github.com/slt-world/slbr
- Owner: SLT-World
- License: gpl-3.0
- Created: 2022-02-21T11:28:48.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-24T13:30:59.000Z (19 days ago)
- Last Synced: 2026-01-24T22:15:37.453Z (19 days ago)
- Topics: browser, c-sharp, cef, cefsharp, cefsharp-wpf, chromium, chromium-embedded-framework, web-browser, webbrowser, webview2, wpf
- Language: C#
- Homepage: https://slt-world.github.io/slbr/
- Size: 5.58 MB
- Stars: 24
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# SLBr
**A lightweight browser for a faster web**
**Fast, lightweight browsing with a clean interface.**
[](https://github.com/SLT-World/SLBr)
[](https://github.com/SLT-World/SLBr)
[](https://github.com/SLT-World/SLBr)
[](https://github.com/SLT-World/SLBr)
[](https://github.com/SLT-World/SLBr/releases/latest)
## SLBr
SLBr is an open-source, lightweight web browser based on Chromium. Built with .NET, WPF, CefSharp (CEF), and WebView2 to provide a modern browsing experience while remaining lightweight.
## Notable Features
See the full feature list, [here](https://slt-world.github.io/slbr/)
- **Clean, Modern UI:** Simple & clean design.
- **Multi Web Engine:** Choose between Chromium engine (CEF), Edge engine (WebView2), Internet Explorer engine (Trident).
- **Ad & Tracker Blocking:** Browse with fewer ads & less tracking.
- **Tab Layouts:** Choose vertical or horizontal tab alignment.
- **Tab Unloading:** Save memory by unloading inactive tabs.
- **Smart Address Bar:** Search suggestions directly in the address bar, with quick calculations, weather, and translation.
- **Private Tabs (Incognito Tabs):** Open private browsing sessions that don't store history and cookies.
- **Tab Groups:** Organize tabs with color-coding & naming.
- **Profile Manager:** Manage multiple profiles on startup.
- **Web Risk Service:** Protects against malicious websites with Google Safe Browsing, Yandex Safe Browsing & PhishTank.
- **Web Page Translation:** Directly translate websites without proxies with Google, Microsoft, Yandex & Lingvanex providers.
- **Clipboard & Download Popup:** Attach recent images from the clipboard/downloads, inspired by Opera's Easy Files. (Only for the Chromium web engine)
- **Extension Support:** Supports Chrome web store extensions. (Only for the Chromium web engine)
## Installation
To install SLBr, follow these steps:
1. Download the [latest release](https://github.com/SLT-World/SLBr/releases/latest).
2. Ensure the following requirements are installed:
- [Microsoft Visual C++ Redistributable](https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170) - [Direct Download x64](https://aka.ms/vs/17/release/vc_redist.x64.exe) (Should be bundled in the computer already)
- [.NET 9.0](https://dotnet.microsoft.com/en-us/download/dotnet/9.0) - (Launching SLBr without .NET 9.0 will automatically prompt a redirect to a direct download.)
- Windows 10 & above
## Thanks
- **Chromium Embedded Framework (CEF)**: Thanks to Marshall A. Greenblatt.
- **CefSharp Team**: Thanks to Amaitland and the CefSharp team.
- **IPFS Implementation** (Not present in the latest rework): Thanks to Ranger Mauve for assisting with the implementation of IPFS in SLBr.
## License
SLBr is licensed under the [GNU General Public License v3.0](https://github.com/SLT-World/SLBr/blob/main/LICENSE).
## Contribution
Feature suggestions and contributions would be much appreciated. Your input helps improve SLBr.
Or you can also contribute by sponsoring [CefSharp](https://github.com/sponsors/amaitland).
## Screenshots & Videos
Website: [SLBr](https://slt-world.github.io/slbr/)
New Video: [YouTube](https://www.youtube.com/watch?v=jqx1v6sxK34)




Old Video: [Old SLBr in action](https://youtu.be/PtmDRjgwmHI)
## Others
> [!IMPORTANT]
> The `SECRETS.cs` file is removed as private API keys are stored inside. To fix it, either:
> - Remove the code that is causing the error, which will remove the ability to use Google Safe Browsing & sign in to Google.
> - Generate a new C# class called "SECRETS":
> ```
> namespace SLBr
> {
> class SECRETS
> {
> public static string GOOGLE_API_KEY = "";
> public static string GOOGLE_DEFAULT_CLIENT_ID = "";
> public static string GOOGLE_DEFAULT_CLIENT_SECRET = "";
> public static string DISCORD_WEBHOOK = "";
> public static string YANDEX_API_KEY = "";
> public static string PHISHTANK_API_KEY = "";
> public static string WEATHER_API_KEY = "";
> public static string AMP_API_KEY = "";
> public const string GOOGLE_TRANSLATE_ENDPOINT = "";
> public const string MICROSOFT_TRANSLATE_ENDPOINT = "";
> public const string LINGVANEX_ENDPOINT = "";
> public const string YANDEX_LANGUAGE_DETECTION_ENDPOINT = "";
> public const string YANDEX_ENDPOINT = "";
> public const string SPELLCHECK_ENDPOINT = "";
> }
> }
> ```