create-chrome-extension-app
v0.0.1
Published
Command Line Interface for creating google chrome entensions
Downloads
11
Maintainers
Readme
Create Browser Extension CLI
Create stunning Chrome extensions effortlessly with the Create Browser Extension CLI. This powerful command-line interface tool enables you to generate a feature-rich starter template for your Chrome extension projects, helping you kickstart your development process.
Features
- Generate a comprehensive starter template for Chrome extensions
- Supports the latest Chrome extension APIs, including manifest v3
- Pre-configured folder structure for easy organization and scalability
- Includes essential files such as manifest.json, background scripts, and popup pages
- User-friendly and intuitive command-line interface
Installation
Please ensure that you have Node.js installed on your machine.
npm install -g create-chrome-extension-app
Usage
Once the package is globally installed, execute the create-chrome-extension-app
command in your terminal to generate a new Chrome extension starter template.
create-chrome-extension-app [options] <directory>
# or
create-extension <directory>
Options
-v, --version
: Show the installed version-h, --help
: Show usage information
Example
To generate a new Chrome extension starter template in a directory named "my-extension":
create-chrome-extension-app my-extension
This will create a new directory called "my-extension" with the generated starter template inside.
Folder Structure
The generated starter template adheres to a recommended folder structure, facilitating efficient code organization for your Chrome extension:
my-extension/
├── manifest.json
├── background/
│ └── background.js
├── popup/
│ ├── popup.html
│ └── popup.js
└── content/
└── content.js
manifest.json
: The primary configuration file for your Chrome extensionbackground/
: Folder for background scriptspopup/
: Folder for the extension's popup pagescontent/
: Folder for content scripts
Development
To begin developing your Chrome extension, navigate to the project directory and follow these steps:
- Customize the
manifest.json
file to configure your extension's settings and permissions. - Implement your extension's functionality in the respective script files (
background.js
,popup.js
,content.js
). - Utilize the Chrome Developer Tools for testing and debugging your extension during development.
- Refer to the Chrome Extension Developer Documentation for comprehensive guidance on building and deploying your extension.
Contributing
Contributions are highly appreciated! If you encounter any issues or have suggestions for enhancements, please feel free to open an issue or submit a pull request on the GitHub repository.
License
This project is licensed under the MIT License. You are welcome to utilize and modify the code according to your requirements.
Effortlessly kickstart your Chrome extension development journey with the Create Browser Extension CLI. Simplify the initial setup process and focus on building remarkable extensions. Get started now and let your creativity soar!