I have stated to build a chrome extensions and I ran across a problem with changing the popup file. I want to include a button that takes the user to another popup window that replaces the default one. In manifest versions 2 or less, you could do the following:
settingButton.addEventListener('click', function(){
chrome.browserAction.setPopup({popup: "blank.html"});
}, false);
What is the alternative for this in manifest 3?