Skip to content

Jonghakseo/chrome-extension-boilerplate-react-vite

Repository files navigation

Logo

GitHub action badge GitHub action badge

hits

This boilerplate has Legacy version

Note

This project is listed in the Awesome Vite

Tip

Share storage state between all pages

2024-07-20.12.36.15.mov

Table of Contents

Intro

This boilerplate helps you create Chrome/Firefox extensions using React and Typescript. It improves the build speed and development experience by using Vite and Turborepo.

Features

Getting started

  1. When you're using Windows run this:

    • git config --global core.eol lf
    • git config --global core.autocrlf input

    This will set the EOL (End of line) character to be the same as on Linux/macOS. Without this, our bash script won't work, and you will have conflicts with developers on Linux/macOS.

  2. Clone this repository.( git clone https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite )

  3. Ensure your node version is >= than in .nvmrc file, recommend to use nvm

  4. Edit /packages/i18n/locales/{your locale(s)}/messages.json

  5. In the objects extensionDescription and extensionName, change the message fields (leave description alone)

  6. In /.package.json, change the version to the desired version of your extension.

  7. Install pnpm globally: npm install -g pnpm (ensure your node version >= 22.12.0)

  8. Run pnpm install

Then, depending on the target browser:

For Chrome:

  1. Run:
    • Dev: pnpm dev (on Windows, you should run as administrator; see issue#456)
    • Prod: pnpm build
  2. Open in browser - chrome://extensions
  3. Check - Developer mode
  4. Click - Load unpacked in the upper left corner
  5. Select the dist directory from the boilerplate project

For Firefox:

  1. Run:
    • Dev: pnpm dev:firefox
    • Prod: pnpm build:firefox
  2. Open in browser - about:debugging#/runtime/this-firefox
  3. Click - Load Temporary Add-on... in the upper right corner
  4. Select the ./dist/manifest.json file from the boilerplate project

Note

In Firefox, you load add-ons in temporary mode. That means they'll disappear after each browser close. You have to load the add-on on every browser launch.

Install dependency for turborepo:

For root:

  1. Run pnpm i <package> -w

For module:

  1. Run pnpm i <package> -F <module name>

package - Name of the package you want to install e.g. nodemon
module-name - You can find it inside each package.json under the key name, e.g. @extension/content-script, you can use only content-script without @extension/ prefix

How do I disable modules I'm not using?

$ pnpm module-manager

Read: Module Manager

Environment variables

Read: Env Documentation

Boilerplate structure

Chrome extension

The extension lives in the chrome-extension directory and includes the following files:

Important

To facilitate development, the boilerplate is configured to "Read and change all your data on all websites". In production, it's best practice to limit the premissions to only the strictly necessary websites. See Declaring permissions and edit manifest.js accordingly.

Pages

Code that is transpiled to be part of the extension lives in the pages directory.

Packages

Some shared packages:

  • dev-utils - utilities for Chrome extension development (manifest-parser, logger)
  • env - exports object which contain all environment variables from .env and dynamically declared
  • hmr - custom HMR plugin for Vite, injection script for reload/refresh, HMR dev-server
  • i18n - custom internationalization package; provides i18n function with type safety and other validation
  • shared - shared code for the entire project (types, constants, custom hooks, components etc.)
  • storage - helpers for easier integration with storage, e.g. local/session storages
  • tailwind-config - shared Tailwind config for entire project
  • tsconfig - shared tsconfig for the entire project
  • ui - function to merge your Tailwind config with the global one; you can save components here
  • vite-config - shared Vite config for the entire project

Other useful packages:

  • zipper - run pnpm zip to pack the dist folder into extension-YYYYMMDD-HHmmss.zip inside the newly created dist-zip
  • module-manager - run pnpm module-manager to enable/disable modules
  • e2e - run pnpm e2e for end-to-end tests of your zipped extension on different browsers

Troubleshooting

Hot module reload seems to have frozen

If saving source files doesn't cause the extension HMR code to trigger a reload of the browser page, try this:

  1. Ctrl+C the development server and restart it (pnpm run dev)
  2. If you get a grpc error, kill the turbo process and run pnpm dev again.

Community

To chat with other community members, you can join the Discord server. You can ask questions on that server, and you can also help others.

Also, suggest new features or share any challenges you've faced while developing Chrome extensions!

Reference

Star History

Star History Chart

Contributors

This Boilerplate is made possible thanks to all of its contributors.

All Contributors

Special Thanks To

JetBrains Logo (Main) logo. Jackson Hong

Made by Jonghakseo