Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.13 KB

CONTRIBUTING.md

File metadata and controls

39 lines (26 loc) · 1.13 KB

Contributing to Chrome Extension CLI

Loving Chrome Extension CLI and want to get involved? Thanks.
We're actively looking for folks interested in helping out. Suggestions and pull requests are highly encouraged!

Workflow

  1. Clone the project:
git clone https://github.com/dutiyesh/chrome-extension-cli.git
cd chrome-extension-cli
npm install
  1. When working on the CLI, create a symlink in the global folder by executing this command:
npm link chrome-extension-cli
  1. Now you can execute the CLI with command:
chrome-extension-cli my-extension

Loading an extension into the browser

Once an extension is built with npm run build command, load it in the browser with below instructions:

  1. Open chrome://extensions
  2. Check the Developer mode checkbox
  3. Click on the Load unpacked extension button
  4. Select the folder my-extension/build

Many thanks to h5bp and sindresorhus for the inspiration with this contributing guide