A sleek web interface for distributing Chrome extensions for WootzApp, crafted with React, Vite, and Tailwind CSS. Designed to showcase a vibrant UI with WootzApp's brand colors and modern effects.
- Beautiful Gradient UI: Utilizes WootzApp's brand colors (
#CF1F2B,#F04D31,#FAA22E) for a visually appealing experience. - Responsive Design: Optimized for all devices.
- Extension Cards: Simple, intuitive cards with download buttons.
- Glassmorphism Effects: Adding depth and elegance.
- Animated Gradients and Hover Effects: Enhances user interactivity.
-
Fork this repository: Go to https://github.com/wootzapp/ext-store and click the "Fork" button at the top-right to create a copy under your GitHub account.
-
Clone your forked repository:
# Replace YOUR_USERNAME with your GitHub username git clone https://github.com/YOUR_USERNAME/ext-store.git -
Navigate to the project directory:
cd ext-store
Install the dependencies and set up the environment:
# Install project dependencies
npm installAdd your extensions in src/extensions.js:
export const extensions = [
{
name: "Your Extension",
description: "Description of your extension",
version: "1.0.0",
filename: "your-extension/build.crx",
image: "your-extension/icon128.png" // 128x128 icon
}
];npm run devTo create a production build and preview it locally:
# Build for production
npm run build
# Preview production build
npm run preview