Skip to content

Simple and ready to use boilerplate for building Chrome extensions using TypeScript, SCSS, and Webpack.

License

Notifications You must be signed in to change notification settings

SamuPert/chrome-extension-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chrome Extension Boilerplate with TypeScript, SCSS and Webpack

This project is a boilerplate for building Chrome extensions using TypeScript, SCSS, and Webpack. It provides a solid and simple starting point for building robust and maintainable extensions.

Features

  • TypeScript for static typing and improved code quality
  • SCSS for styling
  • Webpack for bundling and optimization

Quick Start

To get started, clone the repository and install the dependencies:

git clone https://github.com/SamuPert/chrome-extension-boilerplate.git
cd chrome-extension-boilerplate
npm install

Next, build the extension using webpack:

npm run build

Finally, load the extension into Chrome:

Open Chrome and navigate to chrome://extensions/.

  • Enable "Developer mode".
  • Click "Load unpacked".
  • Select the dist folder from the cloned repository.
  • The extension should now be loaded and running in your browser.

Development

To start a development server with hot reloading, run the following command:

npm run dev

This will automatically compile the extension whenever changes are made to the code.

Deployment

To build the extension for production, run the following command:

npm run build

The optimized and bundled extension will be placed in the dist folder, ready for deployment.

License

This project is licensed under the MIT License. See the LICENSE file for details.