8 lines
254 B
JavaScript
8 lines
254 B
JavaScript
browser.runtime.sendMessage({ greeting: "hello" }).then((response) => {
|
|
console.log("Received response: ", response);
|
|
});
|
|
|
|
browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
|
|
console.log("Received request: ", request);
|
|
});
|