<?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: Klajdi Murataj</title>
    <description>The latest articles on DEV Community by Klajdi Murataj (@klajdm).</description>
    <link>https://dev.to/klajdm</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%2F3815158%2F9388f9ac-d64b-4e7a-8624-ec59d54952a4.jpeg</url>
      <title>DEV Community: Klajdi Murataj</title>
      <link>https://dev.to/klajdm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/klajdm"/>
    <language>en</language>
    <item>
      <title>I Was Live on Meet When WhatsApp Popped Up, Here's What I Built to Make Sure It Never Happens Again</title>
      <dc:creator>Klajdi Murataj</dc:creator>
      <pubDate>Mon, 18 May 2026 22:19:55 +0000</pubDate>
      <link>https://dev.to/klajdm/i-was-live-on-meet-when-whatsapp-popped-up-heres-what-i-built-to-make-sure-it-never-happens-again-3lia</link>
      <guid>https://dev.to/klajdm/i-was-live-on-meet-when-whatsapp-popped-up-heres-what-i-built-to-make-sure-it-never-happens-again-3lia</guid>
      <description>&lt;p&gt;&lt;strong&gt;The Problem&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;WhatsApp Web is seamlessly woven into the modern workday. But there's a design collision no one talks about: screen sharing assumes you want to show everything, and WhatsApp was never designed for an audience of colleagues.&lt;br&gt;
The consequences range from mildly awkward (a friend's name appearing mid-demo) to genuinely serious (medical conversations, relationship problems, financial discussions exposed to managers, clients, or a recorded session that lives forever).&lt;br&gt;
And the "solution" most people reach for closing WhatsApp before the call breaks your workflow every time you need to reference something.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;The Extension: WhatsApp Web Privacy Mode&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzb26egsb67czazyp9h37.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzb26egsb67czazyp9h37.png" alt=" " width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://wsp-web-privacy.com/" rel="noopener noreferrer"&gt;WhatsApp Web Privacy Mode&lt;/a&gt; is a free browser extension for Chrome, Firefox, and Edge that intelligently blurs your chats, messages, and notifications during screen sharing so you can keep WhatsApp open without the exposure risk.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here's what it actually does:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Smart blur&lt;/strong&gt; - Blurs the chat list and/or message content independently. You choose what gets hidden.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Auto screen-share detection&lt;/strong&gt; - The moment you start sharing on Google Meet, Zoom, Teams, or Webex, it activates automatically. No clicks required.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hover to peek&lt;/strong&gt; - Need to quickly check a message? Hover over it. It reveals itself, then re-blurs when you move away.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Panic overlay (Ctrl+Shift+P)&lt;/strong&gt; - Frosted-glass covers your entire screen instantly. For those "oh no" moments when you realize you're sharing before you had time to think.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Notification privacy&lt;/strong&gt; - Incoming message notifications show "Privacy mode is active" instead of the actual content. Even banners can't betray you.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scheduled privacy&lt;/strong&gt; - Set work hours (e.g. 9 AM-6 PM) and it turns itself on automatically every day.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PIN protection&lt;/strong&gt; - Require a PIN to turn it off, so accidental keypresses or a curious colleague can't expose your chats.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Last N messages visible&lt;/strong&gt; - Keep your most recent 1-5 messages unblurred for reference, while everything else stays hidden.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;And critically: zero data collected. No sign-up. No telemetry. Everything stays local.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;How It Works (Technically, If You're Curious)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This isn't a naive "add a CSS class" extension. WhatsApp Web is a React single-page app that aggressively re-renders its DOM. Inline style-based solutions break within seconds.&lt;br&gt;
Instead, the extension injects CSS rules that survive React's re-renders automatically. For notification interception, it runs a script in the browser's MAIN world context (before WhatsApp's own JavaScript) to proxy the &lt;code&gt;Notification&lt;/code&gt; constructor replacing message content before it ever reaches the OS. Screen share detection hooks &lt;code&gt;getDisplayMedia()&lt;/code&gt; calls on meeting platform tabs and relays the signal back via a dual-world content script architecture.&lt;br&gt;
It's Manifest V3 compliant, uses only 5 permissions, and all settings export/import as a local JSON file nothing leaves your device.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Who This Is For&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Remote workers on daily video calls&lt;/li&gt;
&lt;li&gt;Developers and designers who demo products live&lt;/li&gt;
&lt;li&gt;Teachers and educators sharing screens with students&lt;/li&gt;
&lt;li&gt;Streamers and content creators recording their desktop&lt;/li&gt;
&lt;li&gt;Anyone who's ever had that sinking feeling mid-screen-share&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Get It Free&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;WhatsApp Web Privacy Mode is completely free, forever. No premium tier. No account required.&lt;br&gt;
&lt;strong&gt;Chrome:&lt;/strong&gt; &lt;a href="https://chromewebstore.google.com/detail/hnkpadkgmccapdafmicaoigadlhfjnjl?utm_source=item-share-cb" rel="noopener noreferrer"&gt;Chrome Web Store&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Firefox:&lt;/strong&gt; &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/whatsapp-web-privacy-mode/" rel="noopener noreferrer"&gt;Firefox Add-ons&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Edge:&lt;/strong&gt; &lt;a href="https://microsoftedge.microsoft.com/addons/detail/whatsapp-web-privacy-mode/oilcodjllplnffheoecdoaoecpaabilb" rel="noopener noreferrer"&gt;Microsoft Edge Add-ons&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If it's saved you from an embarrassing moment, consider leaving a review it helps other privacy-conscious users find it.&lt;/p&gt;




&lt;p&gt;Privacy isn't about having something to hide. It's about choosing what you share, with whom, and when. Screen sharing shouldn't strip that choice away from you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;WhatsApp Web Privacy Mode gives it back.&lt;/strong&gt;&lt;/p&gt;

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