ShopAI-Extension/scripts/background/background.messaging.js
2024-04-29 08:40:39 +08:00

14 lines
No EOL
332 B
JavaScript

/* link.js
Link the content scripts to the background scripts.
*/
class BackgroundMessaging {
constructor () {
// Create a listener for events.
/* chrome.runtime.onMessage.addListener(async (message, sender, sendResponse) => {
});*/
}
}
export default BackgroundMessaging;