Hello,
I can try to share code, but the problem is very simple and confusingly so.
I have three instances of chrome.runtime.sendMessage and corresponding listeners.
(1) content script (works)
(1) loaded background script persistent (works)
(1) background.js persistent (broken)
The first two (content script & background script) work perfectly fine. I can send and receive messages no problem.
The third, in background.js, runs, loads it callback, but does not trigger any of my chrome.runtime.OnMessage listeners.
Is there a limit to how many messages can be instantiated in an app? I am using the latest & greatest of everything and manifest v2.
Thank you.