List icon Contents

Posted on January 24, 2025

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

Please share your email with us, and we'll send you download instructions.

Sending...
EmailBox Please check your inbox.

We were unable to send the email. Please try again.

If you are a registered customer you don't need to do anything to use this update.

If you would like to evaluate the product, you need an evaluation license.

Get free 30-day trial
Go Top