[ACCEPTED]-Chrome Extension: Open New Popup Window-google-chrome-extension
Accepted answer
You don't need a listener, just create it 1 right away:
chrome.browserAction.onClicked.addListener(function() {
chrome.windows.create({'url': 'redirect.html', 'type': 'popup'}, function(window) {
});
});
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.