List icon 目录

发布日期 2025年01月24日

DotNetBrowser 3.0.1

Chromium 132.0.6834.84

We upgraded Chromium to a newer version, which introduces 16 security fixes, including:

For the complete list of Chromium fixes and improvements since the previous Chromium upgrade please visit the product blog posts for the following versions:

Passwords, credit cards, user data profiles

Now you can add passwords, credit cards, and user data profiles to the corresponding stores programmatically. In the previous versions, this data could be added to the stores only by the user’s interaction with the browser when the browser prompts the user to save the data.

The following code demonstrates how to add a password to the password store programmatically:

PasswordRecord passwordRecord = new PasswordRecord.Builder
    {
        Url = "https://company.com",
        Login = "login",
        Password = "password"
    }.Build();
IPasswordStore passwords = engine.Profiles.Default.PasswordStore;
passwords.Add(passwordRecord);

Quality enhancements

  • The default dialogs implementations in WinUI 3 were reworked to work properly with the hardware-accelerated rendering mode.
  • Fixed broken Widevine functionality on Windows and Linux.

Download DotNetBrowser 3.0.1 (.NET Framework)
Download DotNetBrowser 3.0.1 (.NET Core)
Download DotNetBrowser 3.0.1 (Cross-platform)

Get free 30-day trial

Go Top