Stephen Gruenholz
Stephen Gruenholz
I have a similar problem, also when I open a new tab. Also only fixed when I do a full page load. In my case I'm trying to send a...
No worries. I ended up solving by removing this package as a dependency and just writing my own simple messaging utility functions. I didn't dig in too deeply but pretty...
Something like this, where you just use the native events. ``` export async function sendMessageToTab(tabId: number, type: string, payload: unknown) { return (await chrome.tabs .sendMessage(tabId, { to: "content", type, payload...