Could someone shed some light on where this code is incorrect please
<script>
chrome.browserAction.onClicked.addListener(function(window) {
chrome.windows.onCreated.addListener(function(enumerated string ["popup"]) {
chrome.windows.create({'url': chrome.extension.getURL('redirect.html')}, function(window) {
});
});
});
</script>
I'm trying to achieve that when the extension is clicked on a new popup window will load.
You don't need a listener, just create it right away:
chrome.browserAction.onClicked.addListener(function() {
chrome.windows.create({'url': 'redirect.html', 'type': 'popup'}, function(window) {
});
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With