1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-17 18:09:17 +00:00

expose local db file to extension

This commit is contained in:
William Martin
2025-10-22 10:43:12 -04:00
parent 228b42f207
commit f59f48b0f0
4 changed files with 479000 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -136,7 +136,8 @@
"overlay/menu-button.html",
"overlay/menu-list.html",
"overlay/menu.html",
"popup/fonts/*"
"popup/fonts/*",
"dirt/phishing-detection/services/phishing-domains-ACTIVE.txt"
],
"__firefox__browser_specific_settings": {
"gecko": {

View File

@@ -162,7 +162,8 @@
"overlay/menu-button.html",
"overlay/menu-list.html",
"overlay/menu.html",
"popup/fonts/*"
"popup/fonts/*",
"dirt/phishing-detection/services/phishing-domains-ACTIVE.txt"
],
"matches": ["<all_urls>"]
}

View File

@@ -185,6 +185,13 @@ module.exports.buildConfig = function buildConfig(params) {
{ from: path.resolve(__dirname, "src/images"), to: "images" },
{ from: path.resolve(__dirname, "src/popup/images"), to: "popup/images" },
{ from: path.resolve(__dirname, "src/autofill/content/autofill.css"), to: "content" },
{
from: path.resolve(
__dirname,
"src/dirt/phishing-detection/services/phishing-domains-ACTIVE.txt",
),
to: "dirt/phishing-detection/services/phishing-domains-ACTIVE.txt",
},
],
}),
new MiniCssExtractPlugin({