惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
I
InfoQ
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
Docker
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
博客园 - Franky
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
月光博客
月光博客
罗磊的独立博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
For the women who use Google Meet — I made you a private ...
picorisu · 2026-06-17 · via DEV Community

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.

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 every 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.

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. ✨

What it is

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

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 you 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.

The part I cared about most: privacy

Here's the thing I most wanted to get right: your face never leaves your computer. 🔒

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

I built it this way because it's the version I would want to install myself.

How it works under the hood

The extension intercepts getUserMedia in Google Meet and routes the video stream through a two-stage pipeline:

  1. Skin smoothing → WebGL shader. 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.

  2. Makeup & retouching → Canvas 2D. 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 moveTo/lineTo/arc API is a natural fit for tracing organic face shapes, and much simpler than generating triangle meshes for WebGL every frame.

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

It's a small gift, really 🎁

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:

Simple Makeup Filter for Google Meet (Chrome Web Store)
Source code on GitHub

A few honest notes

  • It works on Google Meet (not on mobile).
  • The before/after faces in my screenshots are AI-generated demo images, not real people.
  • It's an unofficial, personal project. Google Meet is a trademark of Google LLC.
  • 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.

I'm a solo developer 🐿️ in Japan.
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.
I might be slow to reply — but I read every comment. Thank you for your patience.
Thanks for reading. 🤍