extension-develop 3.14.2 → 3.14.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{144.cjs → 740.cjs} +30 -38
- package/dist/module.cjs +76 -24
- package/dist/preview.cjs +1 -1
- package/package.json +1 -1
package/dist/{144.cjs → 740.cjs}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
exports.ids = [
|
|
3
|
-
"
|
|
3
|
+
"740"
|
|
4
4
|
];
|
|
5
5
|
exports.modules = {
|
|
6
6
|
"./dev-server/compiler-hooks.ts" (__unused_rspack_module, __webpack_exports__, __webpack_require__) {
|
|
@@ -824,30 +824,10 @@ exports.modules = {
|
|
|
824
824
|
}
|
|
825
825
|
};
|
|
826
826
|
}
|
|
827
|
-
|
|
828
|
-
const CANONICAL_CONTENT_SCRIPT_ENTRY_PREFIX = "content_scripts/content-";
|
|
829
|
-
function getCanonicalContentScriptEntryName(index) {
|
|
830
|
-
return `${CANONICAL_CONTENT_SCRIPT_ENTRY_PREFIX}${index}`;
|
|
831
|
-
}
|
|
832
|
-
function getCanonicalContentScriptJsAssetName(index) {
|
|
833
|
-
return `${getCanonicalContentScriptEntryName(index)}.js`;
|
|
834
|
-
}
|
|
835
|
-
function getCanonicalContentScriptCssAssetName(index) {
|
|
836
|
-
return `${getCanonicalContentScriptEntryName(index)}.css`;
|
|
837
|
-
}
|
|
838
|
-
function parseCanonicalContentScriptAsset(assetName) {
|
|
839
|
-
const match = /^content_scripts\/content-(\d+)(?:\.[a-f0-9]+)?\.(js|css)$/i.exec(String(assetName || ''));
|
|
840
|
-
if (!match) return;
|
|
841
|
-
const index = Number(match[1]);
|
|
842
|
-
if (!Number.isInteger(index)) return;
|
|
843
|
-
return {
|
|
844
|
-
index,
|
|
845
|
-
extension: match[2]
|
|
846
|
-
};
|
|
847
|
-
}
|
|
827
|
+
var contracts = __webpack_require__("./plugin-web-extension/feature-scripts/contracts.ts");
|
|
848
828
|
function isBundledContentPath(filePath, ext) {
|
|
849
829
|
const normalized = String(filePath || '').replace(/\\/g, '/');
|
|
850
|
-
const bundledAsset =
|
|
830
|
+
const bundledAsset = (0, contracts.es)(normalized);
|
|
851
831
|
return bundledAsset?.extension === ext;
|
|
852
832
|
}
|
|
853
833
|
function isAlreadyBundledContentScripts(contentScripts) {
|
|
@@ -881,7 +861,7 @@ exports.modules = {
|
|
|
881
861
|
result.push({
|
|
882
862
|
...rest,
|
|
883
863
|
js: [
|
|
884
|
-
getFilename(
|
|
864
|
+
getFilename((0, contracts.f6)(bridgeIndex), 'main-world-bridge.js')
|
|
885
865
|
],
|
|
886
866
|
css: []
|
|
887
867
|
});
|
|
@@ -889,10 +869,10 @@ exports.modules = {
|
|
|
889
869
|
result.push({
|
|
890
870
|
...original[index] || {},
|
|
891
871
|
js: [
|
|
892
|
-
...new Set(contentJs.map((js)=>getFilename(
|
|
872
|
+
...new Set(contentJs.map((js)=>getFilename((0, contracts.f6)(index), js)))
|
|
893
873
|
],
|
|
894
874
|
css: [
|
|
895
|
-
...new Set(contentCss.map((css)=>getFilename(
|
|
875
|
+
...new Set(contentCss.map((css)=>getFilename((0, contracts.J4)(index), css)))
|
|
896
876
|
]
|
|
897
877
|
});
|
|
898
878
|
}
|
|
@@ -1472,8 +1452,20 @@ exports.modules = {
|
|
|
1472
1452
|
bannerPrinted: false,
|
|
1473
1453
|
pendingCompilationLine: ''
|
|
1474
1454
|
};
|
|
1455
|
+
function markBannerPrinted() {
|
|
1456
|
+
sharedState.bannerPrinted = true;
|
|
1457
|
+
if (sharedState.pendingCompilationLine) {
|
|
1458
|
+
console.log(sharedState.pendingCompilationLine);
|
|
1459
|
+
sharedState.pendingCompilationLine = '';
|
|
1460
|
+
}
|
|
1461
|
+
}
|
|
1475
1462
|
function isBannerPrinted() {
|
|
1476
|
-
|
|
1463
|
+
if (sharedState.bannerPrinted) return true;
|
|
1464
|
+
if ('true' === process.env.EXTENSION_CLI_BANNER_PRINTED) {
|
|
1465
|
+
markBannerPrinted();
|
|
1466
|
+
return true;
|
|
1467
|
+
}
|
|
1468
|
+
return false;
|
|
1477
1469
|
}
|
|
1478
1470
|
function setPendingCompilationLine(line) {
|
|
1479
1471
|
sharedState.pendingCompilationLine = line;
|
|
@@ -3051,7 +3043,7 @@ exports.modules = {
|
|
|
3051
3043
|
] : [];
|
|
3052
3044
|
const hasReactRefreshLoader = uses.some((useEntry)=>String(useEntry?.loader || '').includes('react-refresh-loader'));
|
|
3053
3045
|
if (hasReactRefreshLoader) rule.issuerLayer = {
|
|
3054
|
-
not:
|
|
3046
|
+
not: contracts.$t
|
|
3055
3047
|
};
|
|
3056
3048
|
if (Array.isArray(rule.oneOf)) this.patchReactRefreshRules(rule.oneOf);
|
|
3057
3049
|
if (Array.isArray(rule.rules)) this.patchReactRefreshRules(rule.rules);
|
|
@@ -3180,7 +3172,7 @@ exports.modules = {
|
|
|
3180
3172
|
const swcRules = [
|
|
3181
3173
|
{
|
|
3182
3174
|
...swcRuleBase,
|
|
3183
|
-
layer:
|
|
3175
|
+
layer: contracts.$t,
|
|
3184
3176
|
include: (resourcePath)=>Array.from(new Set([
|
|
3185
3177
|
tsRoot,
|
|
3186
3178
|
...swcIncludeDirs
|
|
@@ -3204,8 +3196,8 @@ exports.modules = {
|
|
|
3204
3196
|
},
|
|
3205
3197
|
{
|
|
3206
3198
|
...swcRuleBase,
|
|
3207
|
-
issuerLayer:
|
|
3208
|
-
layer:
|
|
3199
|
+
issuerLayer: contracts.$t,
|
|
3200
|
+
layer: contracts.$t,
|
|
3209
3201
|
use: {
|
|
3210
3202
|
...swcLoaderBase,
|
|
3211
3203
|
options: {
|
|
@@ -3226,7 +3218,7 @@ exports.modules = {
|
|
|
3226
3218
|
{
|
|
3227
3219
|
...swcRuleBase,
|
|
3228
3220
|
issuerLayer: {
|
|
3229
|
-
not:
|
|
3221
|
+
not: contracts.$t
|
|
3230
3222
|
},
|
|
3231
3223
|
exclude: [
|
|
3232
3224
|
...swcRuleBase.exclude,
|
|
@@ -3408,7 +3400,7 @@ exports.modules = {
|
|
|
3408
3400
|
};
|
|
3409
3401
|
}
|
|
3410
3402
|
function resolveDevContentScriptDeclaredPath(declaredPath, _groupIndex, ext, assetNames) {
|
|
3411
|
-
const parsed =
|
|
3403
|
+
const parsed = (0, contracts.es)(declaredPath);
|
|
3412
3404
|
if (!parsed || parsed.extension !== ext) return declaredPath;
|
|
3413
3405
|
const hashed = findHashedContentScriptAsset(assetNames, parsed.index, ext);
|
|
3414
3406
|
return hashed || declaredPath;
|
|
@@ -5675,7 +5667,7 @@ exports.modules = {
|
|
|
5675
5667
|
external_path_.dirname(this.manifestPath)
|
|
5676
5668
|
],
|
|
5677
5669
|
issuerLayer: {
|
|
5678
|
-
not:
|
|
5670
|
+
not: contracts.$t
|
|
5679
5671
|
},
|
|
5680
5672
|
exclude: [
|
|
5681
5673
|
/([\\/])node_modules\1/,
|
|
@@ -5816,7 +5808,7 @@ exports.modules = {
|
|
|
5816
5808
|
const cs = contentScripts[i];
|
|
5817
5809
|
if (cs?.world !== 'MAIN') continue;
|
|
5818
5810
|
const bridgeIndex = originalCount + bridgeOrdinal++;
|
|
5819
|
-
bridgeScripts[
|
|
5811
|
+
bridgeScripts[(0, contracts.Y0)(bridgeIndex)] = bridgeSource;
|
|
5820
5812
|
}
|
|
5821
5813
|
} catch {}
|
|
5822
5814
|
return bridgeScripts;
|
|
@@ -5969,7 +5961,7 @@ exports.modules = {
|
|
|
5969
5961
|
} : {
|
|
5970
5962
|
import: finalEntryImports,
|
|
5971
5963
|
...isContentScriptFeature(feature) || isScriptsFolderFeature(feature) ? {
|
|
5972
|
-
layer:
|
|
5964
|
+
layer: contracts.$t
|
|
5973
5965
|
} : {}
|
|
5974
5966
|
};
|
|
5975
5967
|
}
|
|
@@ -7349,11 +7341,11 @@ Set background.noDynamicEntryWarning to true to disable this warning.
|
|
|
7349
7341
|
let bridgeOrdinal = 0;
|
|
7350
7342
|
for(let i = 0; i < csList.length; i++){
|
|
7351
7343
|
const cs = csList[i];
|
|
7352
|
-
const bundleId =
|
|
7344
|
+
const bundleId = (0, contracts.f6)(i);
|
|
7353
7345
|
const isMain = cs?.world === 'MAIN';
|
|
7354
7346
|
if (isMain) {
|
|
7355
7347
|
const bridgeIndex = originalCount + bridgeOrdinal++;
|
|
7356
|
-
const bridgeBundleId =
|
|
7348
|
+
const bridgeBundleId = (0, contracts.f6)(bridgeIndex);
|
|
7357
7349
|
contentScriptsMeta[bundleId] = {
|
|
7358
7350
|
index: i,
|
|
7359
7351
|
bundleId,
|
package/dist/module.cjs
CHANGED
|
@@ -2149,6 +2149,36 @@ var __webpack_modules__ = {
|
|
|
2149
2149
|
};
|
|
2150
2150
|
}
|
|
2151
2151
|
},
|
|
2152
|
+
"./plugin-web-extension/feature-scripts/contracts.ts" (__unused_rspack_module, __webpack_exports__, __webpack_require__) {
|
|
2153
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
2154
|
+
$t: ()=>EXTENSIONJS_CONTENT_SCRIPT_LAYER,
|
|
2155
|
+
J4: ()=>getCanonicalContentScriptCssAssetName,
|
|
2156
|
+
Y0: ()=>getCanonicalContentScriptEntryName,
|
|
2157
|
+
es: ()=>parseCanonicalContentScriptAsset,
|
|
2158
|
+
f6: ()=>getCanonicalContentScriptJsAssetName
|
|
2159
|
+
});
|
|
2160
|
+
const EXTENSIONJS_CONTENT_SCRIPT_LAYER = "extensionjs-content-script";
|
|
2161
|
+
const CANONICAL_CONTENT_SCRIPT_ENTRY_PREFIX = "content_scripts/content-";
|
|
2162
|
+
function getCanonicalContentScriptEntryName(index) {
|
|
2163
|
+
return `${CANONICAL_CONTENT_SCRIPT_ENTRY_PREFIX}${index}`;
|
|
2164
|
+
}
|
|
2165
|
+
function getCanonicalContentScriptJsAssetName(index) {
|
|
2166
|
+
return `${getCanonicalContentScriptEntryName(index)}.js`;
|
|
2167
|
+
}
|
|
2168
|
+
function getCanonicalContentScriptCssAssetName(index) {
|
|
2169
|
+
return `${getCanonicalContentScriptEntryName(index)}.css`;
|
|
2170
|
+
}
|
|
2171
|
+
function parseCanonicalContentScriptAsset(assetName) {
|
|
2172
|
+
const match = /^content_scripts\/content-(\d+)(?:\.[a-f0-9]+)?\.(js|css)$/i.exec(String(assetName || ''));
|
|
2173
|
+
if (!match) return;
|
|
2174
|
+
const index = Number(match[1]);
|
|
2175
|
+
if (!Number.isInteger(index)) return;
|
|
2176
|
+
return {
|
|
2177
|
+
index,
|
|
2178
|
+
extension: match[2]
|
|
2179
|
+
};
|
|
2180
|
+
}
|
|
2181
|
+
},
|
|
2152
2182
|
"@rspack/core" (module) {
|
|
2153
2183
|
module.exports = require("@rspack/core");
|
|
2154
2184
|
},
|
|
@@ -2216,7 +2246,7 @@ var __webpack_modules__ = {
|
|
|
2216
2246
|
module.exports = require("webpack-merge");
|
|
2217
2247
|
},
|
|
2218
2248
|
"./package.json" (module) {
|
|
2219
|
-
module.exports = JSON.parse('{"rE":"3.14.
|
|
2249
|
+
module.exports = JSON.parse('{"rE":"3.14.3","El":{"@prefresh/core":"1.5.9","@prefresh/utils":"1.2.1","@rspack/core":"^1.7.5","@rspack/dev-server":"^1.2.1","@rspack/plugin-preact-refresh":"1.1.4","@rspack/plugin-react-refresh":"1.6.0","@swc/core":"^1.15.8","@swc/helpers":"^0.5.18","@vue/compiler-sfc":"3.5.26","adm-zip":"^0.5.16","browser-extension-manifest-fields":"^2.2.1","case-sensitive-paths-webpack-plugin":"^2.4.0","content-security-policy-parser":"^0.6.0","cross-spawn":"^7.0.6","dotenv":"^17.2.3","extension-from-store":"^0.1.1","go-git-it":"^5.1.5","ignore":"^7.0.5","less":"4.5.1","less-loader":"12.3.0","loader-utils":"^3.3.1","magic-string":"^0.30.21","parse5-utilities":"^1.0.0","pintor":"0.3.0","postcss":"8.5.6","postcss-loader":"8.2.0","postcss-preset-env":"11.1.1","postcss-scss":"4.0.9","preact":"10.27.3","react-refresh":"0.18.0","sass-loader":"16.0.6","schema-utils":"^4.3.3","svelte-loader":"3.2.4","tiny-glob":"^0.2.9","typescript":"5.9.3","unique-names-generator":"^4.7.1","vue":"3.5.26","vue-loader":"17.4.2","webextension-polyfill":"^0.12.0","webpack-merge":"^6.0.1","webpack-target-webextension":"^2.1.3"}}');
|
|
2220
2250
|
}
|
|
2221
2251
|
};
|
|
2222
2252
|
var __webpack_module_cache__ = {};
|
|
@@ -2894,7 +2924,7 @@ var __webpack_exports__ = {};
|
|
|
2894
2924
|
Promise.resolve(require1('@rspack/core')),
|
|
2895
2925
|
import("webpack-merge"),
|
|
2896
2926
|
__webpack_require__.e("750").then(__webpack_require__.bind(__webpack_require__, "./lib/stats-handler.ts")),
|
|
2897
|
-
__webpack_require__.e("
|
|
2927
|
+
__webpack_require__.e("740").then(__webpack_require__.bind(__webpack_require__, "./rspack-config.ts"))
|
|
2898
2928
|
]);
|
|
2899
2929
|
const debug = isAuthor;
|
|
2900
2930
|
if (projectStructure.packageJsonPath) assertNoManagedDependencyConflicts(projectStructure.packageJsonPath, manifestDir);
|
|
@@ -3010,6 +3040,7 @@ var __webpack_exports__ = {};
|
|
|
3010
3040
|
}
|
|
3011
3041
|
var sanitize = __webpack_require__("./lib/sanitize.ts");
|
|
3012
3042
|
const external_node_events_namespaceObject = require("node:events");
|
|
3043
|
+
var contracts = __webpack_require__("./plugin-web-extension/feature-scripts/contracts.ts");
|
|
3013
3044
|
function _define_property(obj, key, value) {
|
|
3014
3045
|
if (key in obj) Object.defineProperty(obj, key, {
|
|
3015
3046
|
value: value,
|
|
@@ -3025,21 +3056,18 @@ var __webpack_exports__ = {};
|
|
|
3025
3056
|
class BrowsersPlugin {
|
|
3026
3057
|
apply(compiler) {
|
|
3027
3058
|
let pendingReloadReason;
|
|
3059
|
+
let pendingChangedSources = [];
|
|
3028
3060
|
compiler.hooks.watchRun.tap(BrowsersPlugin.name, ()=>{
|
|
3029
3061
|
pendingReloadReason = void 0;
|
|
3062
|
+
pendingChangedSources = [];
|
|
3030
3063
|
const modifiedFiles = compiler.modifiedFiles;
|
|
3031
3064
|
if (!modifiedFiles || 0 === modifiedFiles.size) return;
|
|
3065
|
+
const contextDir = compiler.options.context || '';
|
|
3032
3066
|
for (const file of modifiedFiles){
|
|
3033
|
-
const
|
|
3034
|
-
|
|
3035
|
-
if (normalized.includes('manifest.json'))
|
|
3036
|
-
|
|
3037
|
-
return;
|
|
3038
|
-
}
|
|
3039
|
-
if (normalized.includes('_locales/')) {
|
|
3040
|
-
pendingReloadReason = 'full';
|
|
3041
|
-
return;
|
|
3042
|
-
}
|
|
3067
|
+
const normalized = external_path_.relative(contextDir, file).replace(/\\/g, '/');
|
|
3068
|
+
pendingChangedSources.push(normalized);
|
|
3069
|
+
if (normalized.includes('manifest.json')) pendingReloadReason = 'full';
|
|
3070
|
+
else if (normalized.includes('_locales/')) pendingReloadReason = 'full';
|
|
3043
3071
|
}
|
|
3044
3072
|
});
|
|
3045
3073
|
compiler.hooks.done.tapPromise(BrowsersPlugin.name, async (stats)=>{
|
|
@@ -3054,20 +3082,24 @@ var __webpack_exports__ = {};
|
|
|
3054
3082
|
if (!this.isFirstCompile && pendingReloadReason) reloadInstruction = {
|
|
3055
3083
|
type: pendingReloadReason
|
|
3056
3084
|
};
|
|
3057
|
-
else if (!this.isFirstCompile) {
|
|
3058
|
-
const
|
|
3059
|
-
const hasServiceWorkerChange =
|
|
3085
|
+
else if (!this.isFirstCompile && pendingChangedSources.length > 0) {
|
|
3086
|
+
const isServiceWorkerSource = (rel)=>/(^|\/)background(\.|\/)/i.test(rel) || /service[-_.]?worker/i.test(rel);
|
|
3087
|
+
const hasServiceWorkerChange = pendingChangedSources.some(isServiceWorkerSource);
|
|
3060
3088
|
if (hasServiceWorkerChange) reloadInstruction = {
|
|
3061
3089
|
type: 'service-worker',
|
|
3062
|
-
changedAssets
|
|
3090
|
+
changedAssets: pendingChangedSources
|
|
3063
3091
|
};
|
|
3064
|
-
else
|
|
3065
|
-
const
|
|
3066
|
-
if (
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3092
|
+
else {
|
|
3093
|
+
const contentScriptCount = readContentScriptCount(compilation, outputPath);
|
|
3094
|
+
if (contentScriptCount > 0) {
|
|
3095
|
+
const entries = [];
|
|
3096
|
+
for(let i = 0; i < contentScriptCount; i++)entries.push((0, contracts.Y0)(i));
|
|
3097
|
+
reloadInstruction = {
|
|
3098
|
+
type: "content-scripts",
|
|
3099
|
+
changedContentScriptEntries: entries,
|
|
3100
|
+
changedAssets: pendingChangedSources
|
|
3101
|
+
};
|
|
3102
|
+
}
|
|
3071
3103
|
}
|
|
3072
3104
|
}
|
|
3073
3105
|
const wasFirstCompile = this.isFirstCompile;
|
|
@@ -3121,6 +3153,26 @@ var __webpack_exports__ = {};
|
|
|
3121
3153
|
}
|
|
3122
3154
|
}
|
|
3123
3155
|
_define_property(BrowsersPlugin, "name", 'plugin-browsers');
|
|
3156
|
+
function readContentScriptCount(compilation, outputPath) {
|
|
3157
|
+
try {
|
|
3158
|
+
const asset = compilation.getAsset?.('manifest.json');
|
|
3159
|
+
if (asset?.source) {
|
|
3160
|
+
const manifest = JSON.parse(String(asset.source.source()));
|
|
3161
|
+
const list = manifest?.content_scripts;
|
|
3162
|
+
if (Array.isArray(list)) return list.length;
|
|
3163
|
+
}
|
|
3164
|
+
} catch {}
|
|
3165
|
+
try {
|
|
3166
|
+
const fs = __webpack_require__("fs");
|
|
3167
|
+
const manifestPath = external_path_.join(outputPath, 'manifest.json');
|
|
3168
|
+
if (fs.existsSync(manifestPath)) {
|
|
3169
|
+
const manifest = JSON.parse(fs.readFileSync(manifestPath, 'utf8'));
|
|
3170
|
+
const list = manifest?.content_scripts;
|
|
3171
|
+
if (Array.isArray(list)) return list.length;
|
|
3172
|
+
}
|
|
3173
|
+
} catch {}
|
|
3174
|
+
return 0;
|
|
3175
|
+
}
|
|
3124
3176
|
var typescript = __webpack_require__("./plugin-js-frameworks/js-tools/typescript.ts");
|
|
3125
3177
|
async function extensionDev(pathOrRemoteUrl, devOptions) {
|
|
3126
3178
|
let browsersPlugin;
|
|
@@ -3190,7 +3242,7 @@ var __webpack_exports__ = {};
|
|
|
3190
3242
|
}
|
|
3191
3243
|
if ('true' === process.env.EXTENSION_DEV_DRY_RUN) return emitter;
|
|
3192
3244
|
const { devServer } = await Promise.all([
|
|
3193
|
-
__webpack_require__.e("
|
|
3245
|
+
__webpack_require__.e("740"),
|
|
3194
3246
|
__webpack_require__.e("481")
|
|
3195
3247
|
]).then(__webpack_require__.bind(__webpack_require__, "./dev-server/index.ts"));
|
|
3196
3248
|
await devServer(projectStructure, {
|
package/dist/preview.cjs
CHANGED
|
@@ -150,7 +150,7 @@ var __webpack_modules__ = {
|
|
|
150
150
|
module.exports = require("pintor");
|
|
151
151
|
},
|
|
152
152
|
"./package.json" (module) {
|
|
153
|
-
module.exports = JSON.parse('{"rE":"3.14.
|
|
153
|
+
module.exports = JSON.parse('{"rE":"3.14.3","El":{"@prefresh/core":"1.5.9","@prefresh/utils":"1.2.1","@rspack/core":"^1.7.5","@rspack/dev-server":"^1.2.1","@rspack/plugin-preact-refresh":"1.1.4","@rspack/plugin-react-refresh":"1.6.0","@swc/core":"^1.15.8","@swc/helpers":"^0.5.18","@vue/compiler-sfc":"3.5.26","adm-zip":"^0.5.16","browser-extension-manifest-fields":"^2.2.1","case-sensitive-paths-webpack-plugin":"^2.4.0","content-security-policy-parser":"^0.6.0","cross-spawn":"^7.0.6","dotenv":"^17.2.3","extension-from-store":"^0.1.1","go-git-it":"^5.1.5","ignore":"^7.0.5","less":"4.5.1","less-loader":"12.3.0","loader-utils":"^3.3.1","magic-string":"^0.30.21","parse5-utilities":"^1.0.0","pintor":"0.3.0","postcss":"8.5.6","postcss-loader":"8.2.0","postcss-preset-env":"11.1.1","postcss-scss":"4.0.9","preact":"10.27.3","react-refresh":"0.18.0","sass-loader":"16.0.6","schema-utils":"^4.3.3","svelte-loader":"3.2.4","tiny-glob":"^0.2.9","typescript":"5.9.3","unique-names-generator":"^4.7.1","vue":"3.5.26","vue-loader":"17.4.2","webextension-polyfill":"^0.12.0","webpack-merge":"^6.0.1","webpack-target-webextension":"^2.1.3"}}');
|
|
154
154
|
}
|
|
155
155
|
};
|
|
156
156
|
var __webpack_module_cache__ = {};
|