<?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: picorisu</title>
    <description>The latest articles on DEV Community by picorisu (@picorisulabo).</description>
    <link>https://dev.to/picorisulabo</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3989165%2Fcff589d7-23bd-4530-9d3d-27ecda40d845.png</url>
      <title>DEV Community: picorisu</title>
      <link>https://dev.to/picorisulabo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/picorisulabo"/>
    <language>en</language>
    <item>
      <title>For the women who use Google Meet — I made you a private makeup filter for Chrome 🎁</title>
      <dc:creator>picorisu</dc:creator>
      <pubDate>Wed, 17 Jun 2026 14:22:43 +0000</pubDate>
      <link>https://dev.to/picorisulabo/for-the-women-who-use-google-meet-i-made-you-a-private-makeup-filter-for-chrome-501p</link>
      <guid>https://dev.to/picorisulabo/for-the-women-who-use-google-meet-i-made-you-a-private-makeup-filter-for-chrome-501p</guid>
      <description>&lt;p&gt;I spend a fair amount of time on video calls — remote work, online meetings, the occasional interview. And honestly, there are days when I'd like to look just a little more put-together on camera, without it being a whole production. Nothing dramatic. Just a kinder version of a tired afternoon face.&lt;/p&gt;

&lt;p&gt;So I went looking for something simple to do that. What I mostly found fell into two camps: tools that asked for permission to access &lt;em&gt;every&lt;/em&gt; site I visit, or ones that quietly sent my camera feed off to a server to be processed. For something pointed at my own face, in work meetings, that didn't quite sit right with me.&lt;/p&gt;

&lt;p&gt;So one evening, as a break from another project I'm working on, I sat down with some AI help and built the thing I'd been wishing for. To my surprise, it came together in a single night. ✨&lt;/p&gt;

&lt;h2&gt;
  
  
  What it is
&lt;/h2&gt;

&lt;p&gt;It's a Chrome extension called &lt;strong&gt;Simple Makeup Filter for Google Meet&lt;/strong&gt;. It adds natural skin smoothing and adjustable makeup to your Google Meet video, in real time.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/IWDlYKZo1lM"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;You can keep it subtle — just even out your skin a little — or actually do makeup: lip color, blush, brows, eyeshadow, eyeliner, and a bit of contour and highlight, all on sliders so you can land on something that still looks like &lt;em&gt;you&lt;/em&gt; on a good day. It tracks your face in real time, so everything stays in place when you move, blink, or tilt your head. You can also save your favorite looks as presets.&lt;/p&gt;

&lt;h2&gt;
  
  
  The part I cared about most: privacy
&lt;/h2&gt;

&lt;p&gt;Here's the thing I most wanted to get right: &lt;strong&gt;your face never leaves your computer.&lt;/strong&gt; 🔒&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No video or face data is ever sent anywhere — all the processing happens right inside your browser.&lt;/li&gt;
&lt;li&gt;The face-detection model (Google's MediaPipe) is bundled inside the extension, so it doesn't even have network permission to send anything out.&lt;/li&gt;
&lt;li&gt;It asks for exactly two things: permission to save your settings, and permission to run on &lt;code&gt;meet.google.com&lt;/code&gt;. That's it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I built it this way because it's the version I would want to install myself.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works under the hood
&lt;/h2&gt;

&lt;p&gt;The extension intercepts &lt;code&gt;getUserMedia&lt;/code&gt; in Google Meet and routes the video stream through a two-stage pipeline:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Skin smoothing → WebGL shader.&lt;/strong&gt; A bilateral-style filter in GLSL that blurs only skin-colored pixels (detected via YCbCr color space), leaving eyes, edges, and lips sharp. Brightness, warmth, and saturation adjustments happen in the same shader pass — one draw call per frame.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Makeup &amp;amp; retouching → Canvas 2D.&lt;/strong&gt; Google's MediaPipe Face Mesh gives 468 facial landmarks every frame. Lip contours, brow curves, eyeliner wings — these are all drawn as Canvas 2D paths that follow those landmarks. Canvas 2D's &lt;code&gt;moveTo&lt;/code&gt;/&lt;code&gt;lineTo&lt;/code&gt;/&lt;code&gt;arc&lt;/code&gt; API is a natural fit for tracing organic face shapes, and much simpler than generating triangle meshes for WebGL every frame.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The processed canvas is then captured as a &lt;code&gt;MediaStream&lt;/code&gt; and handed back to Meet. The whole thing runs at the camera's native frame rate, with no network calls.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's a small gift, really 🎁
&lt;/h2&gt;

&lt;p&gt;It's completely free. No sign-up, no account, no data collected. If you're on video calls a lot and you've quietly wanted something like this — but, like me, you didn't want to trade away your privacy for it — then it's yours:&lt;/p&gt;

&lt;p&gt;→ &lt;strong&gt;&lt;a href="https://chromewebstore.google.com/detail/jffebejmbaaolmjpokllkkhbepgohmnn?utm_source=dev_to" rel="noopener noreferrer"&gt;Simple Makeup Filter for Google Meet (Chrome Web Store)&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
→ &lt;strong&gt;&lt;a href="https://github.com/picorisu/simple-makeup-filter" rel="noopener noreferrer"&gt;Source code on GitHub&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  A few honest notes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;It works on Google Meet (not on mobile).&lt;/li&gt;
&lt;li&gt;The before/after faces in my screenshots are AI-generated demo images, not real people.&lt;/li&gt;
&lt;li&gt;It's an unofficial, personal project. Google Meet is a trademark of Google LLC.&lt;/li&gt;
&lt;li&gt;It's brand new and made by one person, so if something looks off or you have an idea, I'd genuinely love to hear it — there's a feedback form linked inside the extension.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'm a solo developer 🐿️ in Japan.&lt;br&gt;
I mostly built this for myself, but if it makes even a few of your calls a little easier, that would make me really happy.&lt;br&gt;
I might be slow to reply — but I read every comment. Thank you for your patience.&lt;br&gt;
Thanks for reading. 🤍&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>privacy</category>
      <category>chrome</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
