We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a24d960 commit fbb0897Copy full SHA for fbb0897
scripts/content-scripts/document_start.js
@@ -19,7 +19,7 @@
19
20
// run all scripts that has onDocumentStart event
21
(async () => {
22
- injectScript(
+ import(
23
chrome.runtime.getURL(
24
"/scripts/content-scripts/scripts/ufs_global_webpage_context.js"
25
)
@@ -38,9 +38,7 @@
38
})
39
);
40
41
42
- chrome.runtime.getURL("/scripts/content-scripts/run_scripts.js")
43
- );
+ import(chrome.runtime.getURL("/scripts/content-scripts/run_scripts.js"));
44
})();
45
46
// Run script on user click (if clicked script has onClickContentScript event)
scripts/content-scripts/utils.js
0 commit comments