mirror of
https://github.com/elder-plinius/binaural-beats-generator.git
synced 2026-02-12 16:52:50 +00:00
7 lines
254 B
JavaScript
7 lines
254 B
JavaScript
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
|
|
if (message.action === 'someFutureAction') {
|
|
// Handle any future actions you might want to implement in the background script
|
|
sendResponse({status: 'handled'});
|
|
}
|
|
});
|