now make the new content script executable

This commit is contained in:
buzz-lightsnack-2007 2024-04-26 22:54:54 +08:00
parent fc5890bb72
commit 2372e09c6d

View file

@ -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();
})
})()