Microsoft.Web.WebView2.DevToolsProtocolExtension
1.0.2901
Prefix Reserved
dotnet add package Microsoft.Web.WebView2.DevToolsProtocolExtension --version 1.0.2901
NuGet\Install-Package Microsoft.Web.WebView2.DevToolsProtocolExtension -Version 1.0.2901
<PackageReference Include="Microsoft.Web.WebView2.DevToolsProtocolExtension" Version="1.0.2901" />
paket add Microsoft.Web.WebView2.DevToolsProtocolExtension --version 1.0.2901
#r "nuget: Microsoft.Web.WebView2.DevToolsProtocolExtension, 1.0.2901"
// Install Microsoft.Web.WebView2.DevToolsProtocolExtension as a Cake Addin #addin nuget:?package=Microsoft.Web.WebView2.DevToolsProtocolExtension&version=1.0.2901 // Install Microsoft.Web.WebView2.DevToolsProtocolExtension as a Cake Tool #tool nuget:?package=Microsoft.Web.WebView2.DevToolsProtocolExtension&version=1.0.2901
Optional extension to WebView2 which implements the Chrome DevTools Protocol API, allowing devs to easily access Chromium API functions, events, and types.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.Web.WebView2 (>= 1.0.664.37)
- System.Text.Json (>= 6.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Microsoft.Web.WebView2.DevToolsProtocolExtension:
Package | Downloads |
---|---|
WebView2.DevTools.Dom
WebView2.DevTools.Dom - Extension WebView2 providing strongly typed DOM access/modification. ✔️ WebView2.DevTools.Dom is a library for strongly typed DOM access when using WebView2. ✔️ It provides a convenient way to write readable/robust/refactorable DOM access code. ✔️ Chrome DevTools Protocol based API ✔️ Talks directly to the WebView2 browser (no remote debugging port required). ✔️ Extensive Unit Tests ✔️ Free for everyone to use // Add using WebView2.DevTools.Dom; to get access to the CreateDevToolsContextAsync extension method var devToolsContext = await coreWebView2.CreateDevToolsContextAsync(); // Get element by Id // https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector var htmlDivElement = await devToolsContext.QuerySelectorAsync<HtmlDivElement>("#myDivElementId"); //Set innerText property for the element await htmlDivElement.SetInnerTextAsync("Welcome!"); // Manually dispose of context (only DisposeAsync is supported as the whole API is async) // alternativly use await using var devToolsContext = await coreWebView2.CreateDevToolsContextAsync(); // if your .Net version supports it. await devToolsContext.DisposeAsync(); Website: https://github.com/ChromiumDotNet/WebView2.DevTools.Dom |
|
OpenSilver.Simulator
OpenSilver is an open-source reimplementation of Silverlight that runs on current browsers via WebAssembly. |
|
Crusaders.WPF.Simulator
Extension to existing OpenSilver.Simulator, as winHost for WPF blazor. |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Microsoft.Web.WebView2.DevToolsProtocolExtension:
Repository | Stars |
---|---|
OpenSilver/OpenSilver
This repository contains the source of both OpenSilver and CSHTML5. More information is available at: www.opensilver.net and www.cshtml5.com - Read README.md for the instructions on how to build the source code and how to test it.
|
|
mitevpi/gh-web-ui
Package for building web-based User Interfaces (UI) in Rhino Grasshopper.
|