mirror of
https://github.com/nkcmr/HyperTab.git
synced 2026-04-26 10:48:31 +02:00
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);
|
|
});
|