You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release Notes for the WebView2 SDK, Release, 144 (#3692) (#3704)
* release 144 template
* release first draft
* DragStarting API
* sdk-only section
* date 26th
* extensions user docs on landing page
* user experience (UX)
* Update WebView2 release notes for January 27, 2026
Changed the release date in the WebView2 SDK release notes from January 26, 2026 to January 27, 2026 to reflect the correct release date.
* Add note about chrome.webview availability fix
Updated the release notes to mention the fix for the unavailability of `chrome.webview` in the Runtime-only section.
---------
Co-authored-by: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com>
Co-authored-by: vootlasaichandu <V-VCHANDU@microsoft.com>
Copy file name to clipboardExpand all lines: microsoft-edge/extensions/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ ms.date: 08/20/2024
11
11
# Overview of Microsoft Edge extensions
12
12
<!-- https://aka.ms/AboutEdgeAddons -->
13
13
14
-
A Microsoft Edge _extension_ is a small app that a developer creates to add or modify features of Microsoft Edge, to extend the User Experience (UX) for end-users in a specialized way. An extension provides a niche experience or function that's important to a target audience.
14
+
A Microsoft Edge _extension_ is a small app that a developer creates to add or modify features of Microsoft Edge, to extend the user experience (UX) for end-users in a specialized way. An extension provides a niche experience or function that's important to a target audience.
15
15
16
16
Users browse and install extensions for Microsoft Edge from the [Microsoft Edge Add-ons](https://microsoftedge.microsoft.com) site. _Add-ons_ include extensions and themes.
[NuGet package for WebView2 SDK 1.0.3719.77](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3719.77)
34
+
35
+
For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 144.0.3719.77 or higher.
36
+
37
+
38
+
<!-- ------------------------------ -->
39
+
#### Promotions to Phase 3 (Stable in Release)
40
+
41
+
The following APIs have been promoted from Phase 2: Stable in Prerelease, to Phase 3: Stable in Release, and are now included in this Release SDK.
42
+
43
+
44
+
<!-- ---------- -->
45
+
###### Customize the drag and drop behavior (DragStarting API)
46
+
47
+
The `DragStarting` API overrides the default drag and drop behavior when running in visual hosting mode. The `DragStarting` event notifies your app when the user starts a drag operation in the WebView2, and provides the state that's necessary to override the default WebView2 drag operation with your own logic.
48
+
49
+
<!-- todo: still 5 suffix, like previous phase? https://learn.microsoft.com/en-us/microsoft-edge/webview2/release-notes/?tabs=win32cpp#promotions-to-phase-2-stable-in-prerelease-1 -->
50
+
* Use `DragStarting` on the `ICoreWebView2CompositionController5` to add an event handler that's invoked when the drag operation is starting.
51
+
* Use `ICoreWebView2DragStartingEventArgs` to start your own drag operation.
52
+
* Use the `GetDeferral` method to execute any async drag logic and call back into the WebView at a later time.
53
+
* Use the `Handled` property to let the WebView2 know whether to use its own drag logic.
54
+
55
+
##### [.NET/C#](#tab/dotnetcsharp)
56
+
57
+
N/A
58
+
59
+
##### [WinRT/C#](#tab/winrtcsharp)
60
+
61
+
N/A
62
+
63
+
##### [Win32/C++](#tab/win32cpp)
64
+
65
+
<!-- todo: still 5 suffix, like previous phase? https://learn.microsoft.com/en-us/microsoft-edge/webview2/release-notes/?tabs=win32cpp#promotions-to-phase-2-stable-in-prerelease-1 -->
<!-- todo: still 3 suffix, like previous phase? https://learn.microsoft.com/en-us/microsoft-edge/webview2/release-notes/?tabs=win32cpp#promotions-to-phase-2-stable-in-prerelease-1 -->
This Release SDK includes the following bug fixes.
93
+
94
+
95
+
<!-- ---------- -->
96
+
###### Runtime-only
97
+
98
+
* Fixed `chrome.webview` unavailability.
99
+
100
+
101
+
<!-- ---------- -->
102
+
###### SDK-only
103
+
104
+
* Added the article [Performance best practices for WebView2 apps](../concepts/performance.md), about how to improve the startup speed, memory usage, and responsiveness of a WebView2 app.
0 commit comments