Gathering detailed insights and metrics for wext-manifest-webpack-plugin
Gathering detailed insights and metrics for wext-manifest-webpack-plugin
Gathering detailed insights and metrics for wext-manifest-webpack-plugin
Gathering detailed insights and metrics for wext-manifest-webpack-plugin
Webpack plugin to solve the problem of generating js file for manifest.json entry
npm install wext-manifest-webpack-plugin
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
5 Stars
55 Commits
4 Forks
3 Watchers
1 Branches
2 Contributors
Updated on Apr 05, 2025
Latest Version
1.4.1
Package Id
wext-manifest-webpack-plugin@1.4.1
Unpacked Size
12.36 kB
Size
4.43 kB
File Count
7
NPM Version
9.8.1
Node Version
18.18.0
Published on
Mar 30, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
19
Webpack plugin to solve the problem of generating js file for manifest.json entry
❤️ it? ⭐️ it on GitHub or Tweet about it.
It just find js files from manifest entry and remove the js file from the compilation.
Checkout web-extension-starter that uses this plugin
1# npm 2npm install --save-dev wext-manifest-webpack-plugin 3 4# yarn 5yarn add wext-manifest-webpack-plugin --dev
Version 1.4.0
adds support for webpack 5. Backward compatible with webpack 4 as well.
1// ... other plugins 2const WextManifestWebpackPlugin = require("wext-manifest-webpack-plugin"); 3 4module.exports = { 5 entry: { 6 manifest: './source/manifest.json', 7 // ... 8 }, 9 10 output: { 11 path: path.join(destPath, targetBrowser), 12 filename: 'js/[name].js', 13 }, 14 15 module: { 16 rules: [ 17 { 18 type: 'javascript/auto', // prevent webpack handling json with its own loaders, 19 test: /manifest\.json$/, 20 use: 'wext-manifest-loader', 21 exclude: /node_modules/, 22 }, 23 ] 24 }, 25 26 plugins: [ 27 new WextManifestWebpackPlugin(), 28 // ... 29 ], 30};
Looking to contribute? Look for the Good First Issue label.
Please file an issue here for bugs, missing documentation, or unexpected behavior.
@abhijithvijayan/eslint-config
@abhijithvijayan/tsconfig
MIT © Abhijith Vijayan
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More