
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
create-chrome-extension-boilerplate
Advanced tools
A CLI tool to quickly scaffold Chrome extension projects with modern tooling
A CLI tool to quickly scaffold Chrome extension projects with modern tooling.
npm install -g create-chrome-extension-boilerplate
npx create-chrome-extension-boilerplate my-extension
# Create a new extension with interactive prompts
create-chrome-extension-boilerplate my-extension
# Create a TypeScript extension
create-chrome-extension-boilerplate my-extension --typescript
# Create a React extension
create-chrome-extension-boilerplate my-extension --react
# Create a TypeScript + React extension
create-chrome-extension-boilerplate my-extension --typescript --react
# Skip all prompts and use defaults
create-chrome-extension-boilerplate my-extension --skip-prompts
--typescript - Use TypeScript instead of JavaScript--react - Include React for UI components--skip-prompts - Skip all prompts and use default valuesThe generated extension includes:
The generated project will have the following structure:
my-extension/
├── dist/ # Built extension files (created after build)
├── src/ # Source files
│ ├── assets/ # Static assets like icons
│ ├── background/ # Background script
│ ├── content/ # Content scripts
│ ├── options/ # Options page
│ ├── popup/ # Popup UI
│ └── manifest.json # Extension manifest
├── assets/ # Assets for direct loading
├── scripts/ # Helper scripts
├── manifest.json # Manifest for direct loading
├── webpack.config.js # Webpack configuration
├── package.json # Project dependencies and scripts
└── README.md # Project documentation
After creating your extension:
Navigate to your extension directory:
cd my-extension
Install dependencies:
npm install
Start development mode:
npm run dev
Load the extension in Chrome:
chrome://extensionsdist directory from your projectBuild for production:
npm run build
If you want to develop or modify this tool:
Clone the repository:
git clone https://github.com/TimFinnigan/create-chrome-extension-boilerplate.git
cd create-chrome-extension-boilerplate
Install dependencies:
npm install
Link the package locally:
npm link
Test the CLI:
create-chrome-extension-boilerplate test-extension
Contributions are welcome! Please feel free to submit a Pull Request.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A CLI tool to quickly scaffold Chrome extension projects with modern tooling
The npm package create-chrome-extension-boilerplate receives a total of 0 weekly downloads. As such, create-chrome-extension-boilerplate popularity was classified as not popular.
We found that create-chrome-extension-boilerplate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.