Bare example from mdn/webextensions-examples

This commit is contained in:
2025-11-10 16:23:31 -05:00
parent d71c0c4629
commit f9224e5a97
26 changed files with 653 additions and 16714 deletions

13
webpack.config.js Normal file
View File

@@ -0,0 +1,13 @@
const path = require("path")
module.exports = {
entry: {
background_scripts: "./background/background.js",
popup: "popup/popup.js"
},
output: {
path: path.resolve(__dirname, "addon"),
filename: "[name]/index.js"
},
mode: "none"
}