<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: SOUMYODEEP DEY</title>
    <description>The latest articles on DEV Community by SOUMYODEEP DEY (@soumyodeep_dey).</description>
    <link>https://dev.to/soumyodeep_dey</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1741927%2F27ef2a28-6445-49ae-988a-0ae750e562d2.jpg</url>
      <title>DEV Community: SOUMYODEEP DEY</title>
      <link>https://dev.to/soumyodeep_dey</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/soumyodeep_dey"/>
    <language>en</language>
    <item>
      <title>BeautyMatch – Smart Skin Compatibility for Beauty Products</title>
      <dc:creator>SOUMYODEEP DEY</dc:creator>
      <pubDate>Mon, 28 Jul 2025 06:29:37 +0000</pubDate>
      <link>https://dev.to/soumyodeep_dey/beautymatch-smart-skin-compatibility-for-beauty-products-2fbg</link>
      <guid>https://dev.to/soumyodeep_dey/beautymatch-smart-skin-compatibility-for-beauty-products-2fbg</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;BeautyMatch&lt;/strong&gt; is a privacy-first Chrome Extension that analyzes beauty product pages from &lt;strong&gt;Amazon.in&lt;/strong&gt;, &lt;strong&gt;Sephora India&lt;/strong&gt;, and &lt;strong&gt;Nykaa&lt;/strong&gt;, and shows whether a product is a &lt;strong&gt;Good Match&lt;/strong&gt;, &lt;strong&gt;Caution&lt;/strong&gt;, or &lt;strong&gt;Not Recommended&lt;/strong&gt; based on your skin profile.&lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🧠 Smart verdicts based on your skin tone, type, and allergies&lt;/li&gt;
&lt;li&gt;🛍️ Automatically scrapes ingredient info from supported Indian websites&lt;/li&gt;
&lt;li&gt;✍️ Quick onboarding to save your skin profile&lt;/li&gt;
&lt;li&gt;🎨 Tailwind-powered popup UI with React&lt;/li&gt;
&lt;li&gt;🔒 100% local – no server, no tracking, no data sharing&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Watch it here : &lt;a href="https://youtu.be/7M6hI5qbFKQ?si=CmbFt0JtNMCYexbN" rel="noopener noreferrer"&gt;YouTube Video&lt;/a&gt;
&lt;/h2&gt;




&lt;h2&gt;
  
  
  Full Code here : &lt;a href="https://github.com/Soumyodeep-Dey/BeautyMatch" rel="noopener noreferrer"&gt;GitHub Link&lt;/a&gt;
&lt;/h2&gt;




&lt;h2&gt;
  
  
  📁 Project Structure
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;BeautyMatch/
├── public/
│   ├── manifest.json              # Chrome extension config (MV3)
│   ├── onboarding.html            # Onboarding page HTML
│   └── icons/                     # Extension icons
├── src/
│   ├── pages/
│   │   └── Onboarding.tsx         # Onboarding React component
│   ├── content/
│   │   └── scraper.ts             # Content script to scrape product info
│   ├── background/
│   │   └── background.ts          # Background service worker (MV3)
│   ├── App.tsx                    # Verdict popup UI
│   ├── main.tsx                   # React entry point
│   └── styles/                    # Tailwind CSS
├── index.html                     # Popup HTML
├── vite.config.ts                 # Vite + CRXJS build config
└── README.md                      # You're here!
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  🧠 How It Works
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;You complete a short onboarding quiz&lt;/li&gt;
&lt;li&gt;Your skin profile is saved in &lt;code&gt;chrome.storage.sync&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;When visiting supported product pages, the extension:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Scrapes ingredients from the page&lt;/li&gt;
&lt;li&gt;Compares them with your saved skin profile&lt;/li&gt;
&lt;li&gt;Displays a personalized verdict in the popup&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🛠 Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Vite + React + TypeScript&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS&lt;/strong&gt; for styling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;@crxjs/vite-plugin&lt;/strong&gt; for Manifest V3 Chrome Extension builds&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chrome Extension APIs&lt;/strong&gt;: &lt;code&gt;storage&lt;/code&gt;, &lt;code&gt;runtime&lt;/code&gt;, &lt;code&gt;scripting&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧪 Run Locally
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install dependencies&lt;/span&gt;
npm &lt;span class="nb"&gt;install&lt;/span&gt;

&lt;span class="c"&gt;# Build for Chrome (outputs to /dist)&lt;/span&gt;
npm run build

&lt;span class="c"&gt;# Load in Chrome:&lt;/span&gt;
&lt;span class="c"&gt;# 1. Visit chrome://extensions&lt;/span&gt;
&lt;span class="c"&gt;# 2. Enable Developer Mode&lt;/span&gt;
&lt;span class="c"&gt;# 3. Click "Load unpacked"&lt;/span&gt;
&lt;span class="c"&gt;# 4. Select the /dist folder&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  📦 Scripts
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;npm run dev&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Launches dev server for pages&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;npm run build&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Builds extension for production&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  🌱 Future Roadmap
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add support for more Indian and global e-commerce platforms&lt;/li&gt;
&lt;li&gt;Improve ingredient matching accuracy&lt;/li&gt;
&lt;li&gt;Add accessibility settings and dark mode&lt;/li&gt;
&lt;li&gt;Optional: user login and syncing across devices&lt;/li&gt;
&lt;/ul&gt;




&lt;blockquote&gt;
&lt;p&gt;🚀 Built with ❤️ by &lt;a href="https://soumyodeep-dey.vercel.app/" rel="noopener noreferrer"&gt;Soumyodeep Dey&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>webdev</category>
      <category>extensions</category>
      <category>skincare</category>
      <category>typescript</category>
    </item>
  </channel>
</rss>
