From 11202ba79fa694e4ac76b652ac8b37790a19691b Mon Sep 17 00:00:00 2001 From: buzzcode2007 <73412182+buzz_lightsnack_2007@users.noreply.github.com> Date: Wed, 20 Mar 2024 15:19:23 +0800 Subject: [PATCH] manager.js not needed for now --- scripts/manager.js | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 scripts/manager.js diff --git a/scripts/manager.js b/scripts/manager.js deleted file mode 100644 index 5ab6243..0000000 --- a/scripts/manager.js +++ /dev/null @@ -1,23 +0,0 @@ -/* manager.js -Manage the running of the scripts. -*/ - -/* ```js -chrome.runtime.onInstalled.addListener(function() { - // Request permission for the website. - chrome.permissions.request({ - origins: ["https://example.com"] - }, function(granted) { - // If permission was granted, attach the content script to the website. - if (granted) { - chrome.tabs.executeScript({ - code: 'console.log("Hello from the content script!");' - }); - } else { - // Permission was not granted. Display an error message. - console.error("Error: Permission not granted."); - } - }); -}); -```*/ -