14 lines
No EOL
260 B
JavaScript
14 lines
No EOL
260 B
JavaScript
/*
|
|
content.js
|
|
|
|
The content script
|
|
*/
|
|
|
|
// Import the necessary modules.
|
|
(async () => {
|
|
// Import the watchman module.
|
|
let watch = (await import(chrome.runtime.getURL("scripts/external/watch.js"))).default;
|
|
|
|
// Begin the job.
|
|
watch.main();
|
|
})() |