add message receiving in the background

This commit is contained in:
buzz-lightsnack-2007 2024-04-28 23:56:47 +08:00
parent cbe7ea6042
commit 79cc72dfba

View file

@ -0,0 +1,12 @@
/* link.js
Link the content scripts to the background scripts.
*/
class link {
constructor () {
// Create a listener for events.
chrome.runtime.onMessage.addListener(async (message, sender, sendResponse) => {
});
}
}