1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 22:44:11 +00:00
This commit is contained in:
Hinton
2024-11-05 20:54:58 +01:00
parent a4ba888916
commit a028540603
3 changed files with 5 additions and 2 deletions

View File

@@ -39,6 +39,9 @@
}
],
"background": {
"scripts": ["background.js"]
},
"__chrome__background": {
"service_worker": "background.js"
},
"action": {
@@ -90,7 +93,7 @@
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
"sandbox": "sandbox allow-scripts; script-src 'self'"
},
"sandbox": {
"__chrome__sandbox": {
"pages": [
"overlay/menu-button.html",
"overlay/menu-list.html",

View File

@@ -98,7 +98,7 @@ const requiredPlugins = [
const plugins = [
new HtmlWebpackPlugin({
template: "./src/popup/index.ebs",
template: "./src/popup/index.ejs",
filename: "popup/index.html",
chunks: ["popup/polyfills", "popup/vendor-angular", "popup/vendor", "popup/main"],
browser: browser,