Hey all,
I'm working on chrome extension, I'm creating a minimized popup window, from last few days, it was working fine i.e showing extension logo in the taskbar as the window icon.
But now it doesn't behave that way, it is showing default icon (One we don't have when we run the extension.)
I'm wondering if this is a bug or something wrong with my code or "extension logo shown in taskbar" is not a feature as I don't see it anywhere in the documentation.
If this is a bug then what is the correct way to report this?
My code:
chrome.windows.create({
url: VendorsInitialPage[request?.source.toLowerCase() as keyof typeof VendorsInitialPage],
type: 'popup',
state: 'minimized',
}, createdWindow => {
});