Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.24 KB

quickstart.md

File metadata and controls

25 lines (20 loc) · 1.24 KB

Welcome to your Chrome Extension

What's in this directory

  • config/: Webpack configuration for this project.
  • public/: HTML files for the override page.
  • src/: Source files for the override page. See chrome docs for more details.
  • .gitignore: Lists files to be ignored in your Git repo.
  • package.json: Contains project configuration, scripts, and dependencies.

Test the extension

  1. npm run watch
  2. Open chrome://extensions.
  3. Enable developer mode (top right of page).
  4. Click "Load unpacked extension" (top left page).
  5. Select this directory.

Bundle the extension

To package the source code into static files for the Chrome webstore, execute npm run build.

Documentation

Refer to the Chrome developer documentation to get started.

VSCode developer tools

Refer to github.com/gadhagod/vscode-chrome-extension-developer-tools/blob/master/README.md#commands.