Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashish-chopra/chrome-extension-seed
A starter project to setup Google Chrome Extension development environment using Gulp and Livereload
https://github.com/ashish-chopra/chrome-extension-seed
browser browser-extension chrome chrome-extension-seed chrome-extension-starter extension google-chrome-extension gulp
Last synced: 4 months ago
JSON representation
A starter project to setup Google Chrome Extension development environment using Gulp and Livereload
- Host: GitHub
- URL: https://github.com/ashish-chopra/chrome-extension-seed
- Owner: ashish-chopra
- License: mit
- Created: 2017-01-14T02:20:13.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-20T10:31:58.000Z (almost 8 years ago)
- Last Synced: 2024-10-04T21:11:28.319Z (4 months ago)
- Topics: browser, browser-extension, chrome, chrome-extension-seed, chrome-extension-starter, extension, google-chrome-extension, gulp
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 8
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chrome-extension-seed
This is a starter project scaffolded for setting up Google Chrome extension development enviromment built with Gulp.# How to use?
Run the following commands:
1. Clone the repo:
git clone https://github.com/ashish-chopra/chrome-extension-seed.git2. Move inside root folder `chrome-extension-seed` and run:
npm install3. Use following commands to run development lifecyle events:
npm run clean // to clean the ouput directory
npm run build:dev // build the source code inside 'dist' directory.
npm run serve // host the 'dist' on a web server at port 3000 (default)
npm start // start the development cycle (build t he code, serve it and watch for changes)NOTE: In order to live reload the extension in chrome, the project used `chromereload.js` script which makes a
websocket connection with livereload server running and watch for 'reload' command. Make sure to remove this file
from `manifest.json` before releasing a production builds.# License
MIT