[Solved] Do I have to call return true each time I use onMessage.addListener responseCallback?
This is the expected behavior and clearly stated in the documentation: This function [sendResponse] becomes invalid when the event listener returns, unless you return true from the event listener to indicate you wish to send a response asynchronously (this will keep the message channel open to the other end until sendResponse is called). Your function … Read more