rename link to background messaging

This commit is contained in:
buzz-lightsnack-2007 2024-04-29 08:40:39 +08:00
parent c5fcf03e80
commit bf50ebad7a
2 changed files with 14 additions and 12 deletions

View file

@ -0,0 +1,14 @@
/* 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;

View file

@ -1,12 +0,0 @@
/* 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) => {
});
}
}