Open
Description
Describe the feature/enhancement you need
- Add "ApplicationLinks" into CoreWebView2PermissionKind.
The scenario/use case where you would use this feature
- Allow "Application Links (e.g. Teams (msteams://))" automatically as below code.
CoreWebView2.PermissionRequested += (sender, e) =>
{
if (e.PermissionKind == CoreWebView2PermissionKind.ApplicationLinks)
{
e.State = CoreWebView2PermissionState.Allow;
}
};
How important is this request to you?
Nice to have. There are other ways to tackle this, but having official API support would be beneficial.
Suggested implementation
We can allow "Application Links" manually.
What does your app do? Is there a pending deadline for this request?
No response