Everything I find seems to involve injecting jQuery, but I know jQuery already exists on the page (the browser JS console lets me use it).
I have a background script that is sending a message to my content script, which is running the function. When that function executes I get:
Error in event handler for runtime.onMessage: ReferenceError: jQuery is not defined
(I've tried both $ and jQuery references)
Any ideas why I cannot access the existing jquery object from the content script?