How to develop Google Chrome Extension with React and Webpack?

Thilak
3 min readApr 19, 2022

Link

  1. Create a new folder and initialize the project with the command below. You’ll be having a package.json created in the root folder.
npm init -y

2. Create 2✌️ folders ./src and ./public under root directory.

--

--