I can not open popup windows.
-
A Former User last edited by
I want to open a popup so I can authenticate myself.
I am using chrome.identity.launchWebAuthFlow. I understand that Opera supports it.In addition, having the pop-up windows activated or deactivated has to work the same.
Since I had it deactivated and other apps, it was the same for me.
The question that opens and closes, does not last a second.
I have the same code and I try it on le edge and it works perfectly.
chrome.runtime.onMessage.addListener( function(request, sender, sendResponse){ if( request.message === "login"){ chrome.identity.launchWebAuthFlow({ "url" : authUrl, "interactive" : true }, function(redirect_url){ console.log(redirect_url) }); } setTimeout(function() { sendResponse({status: true}); }, 1); return true; } );
-