I wrote extension that works on Chrome, Opera and Mozilla.
I want run own application via custom protocol from background.js (by iframe). Or for example "mailto:test@test.test"
But app not started (in normal page, not extension all ok), and no console errors. I changed it to creating anchor and clicking it. And edge is crashed.
(
Faulting application name: MicrosoftEdge.exe, version: 11.0.17763.437, time stamp: 0x5ca2f98d
Faulting module name: EMODEL.dll, version: 11.0.17763.437, time stamp: 0x5ca2f5e4
Exception code: 0xc0000005
Fault offset: 0x00000000005e4110
)
Also if i set twice src of iframe i have this too.
Also edge crashes with this (i know its stupid, but i waited maximum error, not crash):
<!DOCTYPE html>
<html>
<head>
<script src="background.js"></script>
</head>
<body>
<iframe src="mailto:dkowq"/>
</body>
</html>
One time i even got blue screen.
browser.tabs.create() Works but it open and close tab.
navigator.msLaunchUri() not working in extension.
_____________
Edge 44.17763.1.0,
win 10 pro x64
Thanks.