Files
binaural-beats-generator/binauralGenerator.js
2023-08-12 16:42:37 -07:00

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'});
}
});