Send message from popup to cs and back
I have something like:
but I keep getting on the popup
content.tspopup.sveltebut I keep getting on the popup
content.tspopup.svelteUnchecked runtime.lastError: The message port closed before a response was received.chrome.runtime.onMessage.addListener((_, __, sendResponse) => {
sendResponse(...)
});<script lang="ts">
chrome.tabs.query({ active: true, currentWindow: true }, ({ tabs: { 0: { id } } }) => {
chrome.tabs.sendMessage(id, value => {
// ...
});
});
</script>