You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Webpack compilation was simply about adding a new entry "page-load": path.join(__dirname, "src", "js", "page-load.js") but I don't see how to make the extension get this latest version of the .js file without having to reload the extension (or if there are better ways to do this).
The text was updated successfully, but these errors were encountered:
First of all, your boilerplate looks really good! 👍
However, in a specific case I am required to load some JavaScript even before the page is rendered. Thus, making
background.html
unsuitable.According to the chrome extension documentation I can use nothing but JS and CSS files
How would you do it in this case?
Webpack compilation was simply about adding a new entry
"page-load": path.join(__dirname, "src", "js", "page-load.js")
but I don't see how to make the extension get this latest version of the.js
file without having to reload the extension (or if there are better ways to do this).The text was updated successfully, but these errors were encountered: