From 6816fddff2546e53adfee2219907b9261b3d6fe5 Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Fri, 3 May 2024 12:06:56 +0800 Subject: [PATCH] unused background messaging removed --- scripts/background/background.messaging.js | 14 -------------- scripts/background/shopAI.js | 4 +--- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 scripts/background/background.messaging.js diff --git a/scripts/background/background.messaging.js b/scripts/background/background.messaging.js deleted file mode 100644 index 1809685..0000000 --- a/scripts/background/background.messaging.js +++ /dev/null @@ -1,14 +0,0 @@ -/* 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; \ No newline at end of file diff --git a/scripts/background/shopAI.js b/scripts/background/shopAI.js index 6f2da7c..78208ef 100644 --- a/scripts/background/shopAI.js +++ b/scripts/background/shopAI.js @@ -4,8 +4,6 @@ Shop wisely with AI! import fc from './fc.js'; import BackgroundCheck from "./background.check.js"; -import BackgroundMessaging from "./background.messaging.js"; fc.run(); -BackgroundCheck.init(); -new BackgroundMessaging(); \ No newline at end of file +BackgroundCheck.init(); \ No newline at end of file