<?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: ToolAnchor</title>
    <description>The latest articles on DEV Community by ToolAnchor (@toolanchor).</description>
    <link>https://dev.to/toolanchor</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%2F4012983%2Facef523e-14cf-45ea-b773-a65a9129b0a8.png</url>
      <title>DEV Community: ToolAnchor</title>
      <link>https://dev.to/toolanchor</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/toolanchor"/>
    <language>en</language>
    <item>
      <title>How to check your browser's privacy with 30 lines of JavaScript — and what I learned</title>
      <dc:creator>ToolAnchor</dc:creator>
      <pubDate>Wed, 08 Jul 2026 16:15:00 +0000</pubDate>
      <link>https://dev.to/toolanchor/how-to-check-your-browsers-privacy-with-30-lines-of-javascript-and-what-i-learned-39o6</link>
      <guid>https://dev.to/toolanchor/how-to-check-your-browsers-privacy-with-30-lines-of-javascript-and-what-i-learned-39o6</guid>
      <description>&lt;h2&gt;
  
  
  What most people don't know about their browser
&lt;/h2&gt;

&lt;p&gt;Your browser leaks more than you think — and you don't need a third-party tool to check it. Most of the signals you need are already in the browser's native APIs.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 6 checks I run (and the JS code)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. HTTPS status&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;window.location.protocol === 'https:'&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Cookies enabled&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;navigator.cookieEnabled&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Local storage available&lt;/strong&gt;&lt;br&gt;
Try/catch a localStorage.setItem() call&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Do Not Track signal&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;navigator.doNotTrack === '1'&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Private/Incognito heuristic&lt;/strong&gt;&lt;br&gt;
Check localStorage quota — private mode caps it at ~5MB in most browsers&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Browser detection&lt;/strong&gt;&lt;br&gt;
navigator.userAgent parsing for Chrome/Firefox/Safari/Edge&lt;/p&gt;

&lt;h2&gt;
  
  
  Turning it into a score
&lt;/h2&gt;

&lt;p&gt;Each check that passes adds points to a score out of 100. I weight DNT and HTTPS more heavily because they have the most real-world impact.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built with this
&lt;/h2&gt;

&lt;p&gt;A free browser privacy checker that runs these 6 checks instantly and gives you a score, a verdict, and a personalized list of things to fix.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://toolsanchor.com/privacy-security-checkup/" rel="noopener noreferrer"&gt;Browser Privacy &amp;amp; Security Checkup&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I want to add next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;WebRTC leak detection (navigator.mediaDevices.enumerateDevices)&lt;/li&gt;
&lt;li&gt;Canvas fingerprint score&lt;/li&gt;
&lt;li&gt;Third-party cookie isolation check&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What would you add? Have you built something similar?&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>security</category>
      <category>privacy</category>
    </item>
    <item>
      <title>I built a WiFi QR Code Generator that runs 100% in your browser</title>
      <dc:creator>ToolAnchor</dc:creator>
      <pubDate>Fri, 03 Jul 2026 16:20:00 +0000</pubDate>
      <link>https://dev.to/toolanchor/i-built-a-wifi-qr-code-generator-that-runs-100-in-your-browser-8ld</link>
      <guid>https://dev.to/toolanchor/i-built-a-wifi-qr-code-generator-that-runs-100-in-your-browser-8ld</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Sharing your WiFi password out loud is awkward. Typing it on a guest's phone takes forever. And some passwords are 20+ characters.&lt;/p&gt;

&lt;h2&gt;
  
  
  The WiFi QR Code Trick
&lt;/h2&gt;

&lt;p&gt;A WiFi QR code encodes your network credentials in a format phones understand natively — iOS 11+ and Android 10+ both support it without any app. Guest scans it, connects instantly.&lt;/p&gt;

&lt;p&gt;The QR string format looks like this:&lt;br&gt;
WIFI:T:WPA;S:YourNetworkName;P:YourPassword;;&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Built It (in 40 lines of JavaScript)
&lt;/h2&gt;

&lt;p&gt;[paste 20–30 lines of your actual JS generator code here]&lt;/p&gt;

&lt;p&gt;The key is using a QR library like qrcode.js and building the WIFI: string dynamically from the form inputs.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Added for Better UX
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Show/hide password toggle&lt;/li&gt;
&lt;li&gt;Network type dropdown (WPA2, WPA3, WEP, None)&lt;/li&gt;
&lt;li&gt;Hidden network checkbox&lt;/li&gt;
&lt;li&gt;One-click download as PNG&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Real Use Cases
&lt;/h2&gt;

&lt;p&gt;I designed this with 4 scenarios in mind:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;House guests who can't connect&lt;/li&gt;
&lt;li&gt;Airbnb hosts who change passwords monthly&lt;/li&gt;
&lt;li&gt;Office WiFi for visitor access&lt;/li&gt;
&lt;li&gt;New home setup — print it and stick it on the router&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It Free
&lt;/h2&gt;

&lt;p&gt;👉 &lt;a href="https://freetools.icu/wifi-qr-code-generator/" rel="noopener noreferrer"&gt;WiFi QR Code Generator&lt;/a&gt; — no signup, nothing stored.&lt;/p&gt;

&lt;p&gt;I also built a &lt;a href="https://freetools.icu/password-generator-strength-checker/" rel="noopener noreferrer"&gt;Password Generator&lt;/a&gt; and a &lt;a href="https://freetools.icu/privacy-security-checkup/" rel="noopener noreferrer"&gt;Browser Privacy Checker&lt;/a&gt; as part of the same toolkit.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>tutorial</category>
      <category>privacy</category>
    </item>
  </channel>
</rss>
