<?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: Dmnadsword Tv</title>
    <description>The latest articles on DEV Community by Dmnadsword Tv (@lightseong).</description>
    <link>https://dev.to/lightseong</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%2F3970921%2F0d4c323b-8039-4880-b723-d5a2f23e899c.jpg</url>
      <title>DEV Community: Dmnadsword Tv</title>
      <link>https://dev.to/lightseong</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lightseong"/>
    <language>en</language>
    <item>
      <title>How I built a Stripe monitoring tool in my browser with zero backend</title>
      <dc:creator>Dmnadsword Tv</dc:creator>
      <pubDate>Sun, 07 Jun 2026 14:00:13 +0000</pubDate>
      <link>https://dev.to/lightseong/how-i-built-a-stripe-monitoring-tool-in-my-browser-with-zero-backend-3n7a</link>
      <guid>https://dev.to/lightseong/how-i-built-a-stripe-monitoring-tool-in-my-browser-with-zero-backend-3n7a</guid>
      <description>&lt;p&gt;Most payment monitoring tools work the same way:&lt;br&gt;
your API key goes to their server, their server &lt;br&gt;
polls Stripe, their server sends you a notification.&lt;/p&gt;

&lt;p&gt;That means your revenue data, customer patterns, &lt;br&gt;
and API credentials are sitting on someone else's &lt;br&gt;
infrastructure. Forever.&lt;/p&gt;

&lt;p&gt;I built Stripe Alerts differently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The architecture&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Everything runs in the browser. Here's the full flow:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;User pastes a read-only Stripe API key&lt;/li&gt;
&lt;li&gt;Key is stored in chrome.storage.local — never synced, 
never transmitted&lt;/li&gt;
&lt;li&gt;A Chrome Manifest V3 service worker polls the 
Stripe REST API directly on a schedule&lt;/li&gt;
&lt;li&gt;Response is processed locally in the browser&lt;/li&gt;
&lt;li&gt;Chrome's native notifications API fires the alert&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The request chain is: Browser → Stripe API → Browser.&lt;br&gt;
No middleman. No server. No data leakage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Manifest V3 matters&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Chrome's Manifest V3 forced developers to move from &lt;br&gt;
persistent background pages to service workers. This &lt;br&gt;
actually helped the privacy architecture — service &lt;br&gt;
workers are ephemeral, they spin up to do a job and &lt;br&gt;
shut down. Nothing persists in memory between checks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it monitors&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Failed payment spike detection&lt;/li&gt;
&lt;li&gt;Chargeback and dispute activity
&lt;/li&gt;
&lt;li&gt;Subscription cancellation monitoring&lt;/li&gt;
&lt;li&gt;Refund anomaly detection&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The result&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A monitoring tool that is genuinely privacy-first by &lt;br&gt;
architecture, not just by policy. There's no server &lt;br&gt;
to breach, no database to leak, no API key to steal.&lt;/p&gt;

&lt;p&gt;Free to install → &lt;a href="https://chromewebstore.google.com/detail/stripe-alerts/epemeoabcaoifldejoblcknljpgbphao" rel="noopener noreferrer"&gt;https://chromewebstore.google.com/detail/stripe-alerts/epemeoabcaoifldejoblcknljpgbphao&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy to answer any technical questions below.&lt;/p&gt;

</description>
      <category>stripe</category>
      <category>webdev</category>
      <category>javascript</category>
      <category>privacy</category>
    </item>
    <item>
      <title>Real-time Stripe monitoring that never leaves your browser</title>
      <dc:creator>Dmnadsword Tv</dc:creator>
      <pubDate>Sat, 06 Jun 2026 08:05:38 +0000</pubDate>
      <link>https://dev.to/lightseong/real-time-stripe-monitoring-that-never-leaves-your-browser-48oh</link>
      <guid>https://dev.to/lightseong/real-time-stripe-monitoring-that-never-leaves-your-browser-48oh</guid>
      <description>&lt;p&gt;Stripe Alerts is a Chrome extension that monitors &lt;br&gt;
your Stripe dashboard and sends instant desktop &lt;br&gt;
notifications when something goes wrong — failed &lt;br&gt;
payment spikes, chargebacks, subscription &lt;br&gt;
cancellations, and refund anomalies.&lt;/p&gt;

&lt;p&gt;Your read-only Stripe API key is stored locally in &lt;br&gt;
Chrome. No external servers, no data transmission, &lt;br&gt;
no account required. Free tier available, Pro &lt;br&gt;
unlocks all alert types and unlimited checks. &lt;br&gt;
&lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
      &lt;div class="c-embed__body flex items-center justify-between"&gt;
        &lt;a href="https://www.getstripealerts.com" rel="noopener noreferrer" class="c-link fw-bold flex items-center"&gt;
          &lt;span class="mr-2"&gt;getstripealerts.com&lt;/span&gt;
          

        &lt;/a&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
/

</description>
      <category>monitoring</category>
      <category>privacy</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
