<?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: LN Das</title>
    <description>The latest articles on DEV Community by LN Das (@lndas).</description>
    <link>https://dev.to/lndas</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%2F3284266%2F88bf520c-618b-4b9c-8c86-cb98da7821d8.png</url>
      <title>DEV Community: LN Das</title>
      <link>https://dev.to/lndas</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lndas"/>
    <language>en</language>
    <item>
      <title>Websites Can Access Your Location Without You Noticing — I Made a Tool to Catch That</title>
      <dc:creator>LN Das</dc:creator>
      <pubDate>Sun, 22 Jun 2025 14:06:17 +0000</pubDate>
      <link>https://dev.to/lndas/websites-can-access-your-location-without-you-noticing-i-made-a-tool-to-catch-that-1kj</link>
      <guid>https://dev.to/lndas/websites-can-access-your-location-without-you-noticing-i-made-a-tool-to-catch-that-1kj</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;TL;DR: I created &lt;strong&gt;Permission Analyzer&lt;/strong&gt;, an open-source Chrome privacy extension that logs when websites access your &lt;strong&gt;camera, mic, location, clipboard&lt;/strong&gt;, or &lt;strong&gt;notifications&lt;/strong&gt; using the &lt;strong&gt;Chrome Permissions API&lt;/strong&gt; — with timestamps and local-only storage. &lt;a href="https://github.com/LnDas/permission-analyzer" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Why You Should Care About Browser Permission Logging
&lt;/h2&gt;

&lt;p&gt;Websites can request powerful permissions — like your &lt;strong&gt;microphone&lt;/strong&gt;, &lt;strong&gt;camera&lt;/strong&gt;, or &lt;strong&gt;location&lt;/strong&gt; — and once granted, they can often use them in the background &lt;strong&gt;without you noticing&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;There's no native Chrome feature to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Notify you when permissions are accessed&lt;/li&gt;
&lt;li&gt;Log usage history&lt;/li&gt;
&lt;li&gt;Export access records&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;As a privacy-conscious developer, I wanted to &lt;strong&gt;see exactly what was accessed, when, and by which website&lt;/strong&gt; — without compromising my own data security.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;So I built &lt;strong&gt;Permission Analyzer&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Introducing: Permission Analyzer
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Permission Analyzer&lt;/strong&gt; is a focused, open-source &lt;strong&gt;Chrome permission logger&lt;/strong&gt; that gives you visibility into what’s happening behind the scenes in your browser.&lt;/p&gt;

&lt;h3&gt;
  
  
  What It Tracks:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Camera access&lt;/li&gt;
&lt;li&gt;Microphone access&lt;/li&gt;
&lt;li&gt;Geolocation&lt;/li&gt;
&lt;li&gt;Clipboard read access&lt;/li&gt;
&lt;li&gt;Notifications&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All events are timestamped and logged &lt;strong&gt;only to your device&lt;/strong&gt;, using &lt;code&gt;chrome.storage.local&lt;/code&gt;. Nothing ever leaves your browser.&lt;/p&gt;

&lt;h3&gt;
  
  
  Who It's For:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Privacy-focused users&lt;/li&gt;
&lt;li&gt;Developers testing permission behavior&lt;/li&gt;
&lt;li&gt;Security auditors&lt;/li&gt;
&lt;li&gt;Anyone curious about silent browser access&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;If you're searching for a &lt;strong&gt;Chrome extension to track mic and camera access&lt;/strong&gt;, or to &lt;strong&gt;monitor website permissions in real time&lt;/strong&gt;, this tool fills that exact need.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  What Makes It Unique (vs Other Privacy Extensions)
&lt;/h2&gt;

&lt;p&gt;Unlike privacy blockers or managers, Permission Analyzer doesn’t block — it reveals.&lt;/p&gt;

&lt;h3&gt;
  
  
  Here's what sets it apart:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Logs &lt;strong&gt;actual access&lt;/strong&gt; (not just permission requests)&lt;/li&gt;
&lt;li&gt;Uses the &lt;strong&gt;Chrome Permissions API&lt;/strong&gt; to detect and timestamp activity&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;No analytics, tracking, or external calls&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Works fully &lt;strong&gt;offline&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Exports your data to &lt;strong&gt;Markdown&lt;/strong&gt; for review or reporting&lt;/li&gt;
&lt;li&gt;Built with vanilla JavaScript &lt;strong&gt;(no frameworks)&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Open-source and 100% auditable on GitHub&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Other tools may hide or restrict access, but almost none let you &lt;strong&gt;see who accessed what and when&lt;/strong&gt; — Permission Analyzer does.&lt;/p&gt;
&lt;/blockquote&gt;




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

&lt;ol&gt;
&lt;li&gt;The extension listens for permission activity using Chrome’s internal APIs.&lt;/li&gt;
&lt;li&gt;When a site accesses a tracked permission, it:

&lt;ul&gt;
&lt;li&gt;Logs the site domain&lt;/li&gt;
&lt;li&gt;Records the permission used&lt;/li&gt;
&lt;li&gt;Captures the timestamp&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;These events are stored in &lt;code&gt;chrome.storage.local&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;A popup UI displays your log history&lt;/li&gt;
&lt;li&gt;One click exports the log to Markdown&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  Installation (Manual — Chrome Web Store Coming Soon)
&lt;/h2&gt;

&lt;p&gt;To install manually:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Clone the repo:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/LnDas/permission-analyzer.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Visit &lt;code&gt;chrome://extensions/&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Enable &lt;strong&gt;Developer Mode&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Load unpacked&lt;/strong&gt; and select the extension folder&lt;/li&gt;
&lt;li&gt;Done — it starts working instantly&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  Built for Transparency
&lt;/h2&gt;

&lt;p&gt;I made Permission Analyzer for people like me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Developers&lt;/li&gt;
&lt;li&gt;Hackers&lt;/li&gt;
&lt;li&gt;Privacy nerds&lt;/li&gt;
&lt;li&gt;Open-source believers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can inspect every line of code. You can run it offline. You can audit your own browsing environment — &lt;strong&gt;with no one watching you back&lt;/strong&gt;.&lt;/p&gt;




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

&lt;p&gt;Looking for a way to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Track site permission access in Chrome&lt;/strong&gt;?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Log camera, mic, or location usage&lt;/strong&gt;?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Use a Chrome privacy extension that doesn’t spy on you&lt;/strong&gt;?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then try Permission Analyzer:&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/LnDas/permission-analyzer" rel="noopener noreferrer"&gt;https://github.com/LnDas/permission-analyzer&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you like it, give it a star on GitHub or share with others who care about browser privacy.&lt;/p&gt;

</description>
      <category>chromeextension</category>
      <category>privacy</category>
      <category>permissions</category>
      <category>browsersecurity</category>
    </item>
  </channel>
</rss>
