A simple web browser extension built with React, TypeScript, Webpack and Tailwind CSS that socializes your browsing experience.
- React
- TypeScript
- Tailwind CSS
- Webpack
# Install dependencies
npm install
# Build the extension for development
npm run devThe project includes the following npm scripts:
-
npm run dev: Runs webpack in watch mode for development. This continuously rebuilds the extension as you make changes to the code, making it ideal for development.
-
npm run build: Builds the extension for production. This creates optimized files in the
distdirectory ready for distribution.
- Run
npm run devto start the development build process - Load the extension from the
distfolder into your browser:- Open Chrome/Edge and navigate to
chrome://extensions/ - Enable "Developer mode"
- Click "Load unpacked" and select the
distdirectory
- Open Chrome/Edge and navigate to
After making changes to the code, the extension will automatically rebuild. You may need to reload the extension in your browser to see changes.