diff --git a/scripts/external/content.js b/scripts/external/content.js index d246bfb..7eae7d1 100644 --- a/scripts/external/content.js +++ b/scripts/external/content.js @@ -7,8 +7,8 @@ The content script // Import the necessary modules. (async () => { // Import the watchman module. - let watchman = await import(chrome.runtime.getURL("scripts/external/watch.js")); - + let watchman = (await import(chrome.runtime.getURL("scripts/external/watch.js"))).default; + // Begin the job. watchman.job(); -}) \ No newline at end of file +})() \ No newline at end of file