Skip to content

Files

Latest commit

author
Roman Hentschke
May 29, 2022
0691909 · May 29, 2022

History

History
22 lines (18 loc) · 1.15 KB

quickstart.md

File metadata and controls

22 lines (18 loc) · 1.15 KB

Welcome to your Chrome Extension

What's in this directory

  • config/: Webpack configuration for this project.
  • public/: Popup files.
  • src/: Source files for the popup, background script, and content script.
  • .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.

VSCode developer tools

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