/chrome-ext-template

A simple quick-start template for Chrome extension development

Primary LanguageCSSMIT LicenseMIT

This is a simple quick-start template for Chrome extension development.

Quick Start

  1. Clone the template

git clone git@github.com:htr3n/chrome-ext-template.git your-extension-project

  1. Configure/customise your extension development project

  2. Install and test the extension locally

Visit chrome://extensions and expand "Development mode", then choose "Load unpacked" and point to your new project directory.

  1. Build/pack and publish

sh build.sh

Upon successful building, there is a file your-extension.crx in the same folder that can be installed as "Pack extension" in Chrome or publish to Chrome Web Store.

Customisation Points

manifest.json

build.sh

  • This is a simple build script to package the current folder (i.e. your extension) as Chrome .crx which is ready to be deployed/installed. Modify the extension file name w.r.t your project.

Reference