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

推荐订阅源

有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
B
Blog
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 司徒正美
Apple Machine Learning Research
Apple Machine Learning Research
Recent Announcements
Recent Announcements
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security 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
I Applied SLA Concepts to My Email Inbox — Here's What I ...
SHOTA · 2026-05-27 · via DEV Community

I used to work in B2B SaaS customer support where every incoming email had an SLA timer attached. Green meant you had time, orange meant it was getting close, red meant someone was already frustrated. The system was brutally effective at preventing things from slipping through.

Then I switched jobs and suddenly all those SLA tools were gone. Just an inbox full of emails, no urgency signals, no way to tell at a glance which thread had been waiting the longest.

So I built InboxSLA — a Chrome extension that brings response-time deadlines to Gmail.

The Core Idea

You define clients by email domain and assign each one an SLA in hours. InboxSLA scans your inbox and injects colored badges onto thread rows:

  • 🟢 Green: thread is within SLA (hours remaining shown)
  • 🟠 Orange: approaching the deadline (configurable threshold, default 2h)
  • 🔴 Red "OVERDUE": the clock has run out

The SLA values are fully per-client. A freelancer might set 48h for long-term retainers. An agency handling fast-turnaround support might use 4h.

The Hard Part: Gmail Is a SPA

Gmail doesn't reload the page when you navigate between labels or open threads. The DOM updates in place, which means DOMContentLoaded won't catch anything after the initial load.

The fix is MutationObserver, watching for list changes:

const observer = new MutationObserver(() => {
  scheduleRefresh(); // debounced to 300ms
});
observer.observe(document.body, { childList: true, subtree: true });

Enter fullscreen mode Exit fullscreen mode

The debounce matters a lot. Gmail makes constant small DOM changes while you type in the search box, hover over items, or auto-save a draft. Without throttling, the observer fires hundreds of times per second. I debounce to 300ms and skip re-scans if the thread list container hash hasn't changed.

Extracting Email Metadata From an Obfuscated DOM

Gmail's CSS class names are auto-generated and change between A/B test variants. Rather than trusting class selectors alone, I use a multi-strategy fallback for sender extraction:

const senderEl =
  row.querySelector('[email]') ??
  row.querySelector('.yW span[email]') ??
  row.querySelector('.bA4 span[email]') ??
  row.querySelector('[data-hovercard-id]');

Enter fullscreen mode Exit fullscreen mode

The [email] attribute selector is the most stable — Google uses it internally across many Gmail builds. CSS fallbacks handle variants.

For timestamps, the title attribute on the time element is the most reliable source:

const timeEl =
  row.querySelector('.xW.xY span[title]') ??
  row.querySelector('td.xW span[title]');
const title = timeEl?.getAttribute('title') ?? '';
const parsed = new Date(title).getTime();

Enter fullscreen mode Exit fullscreen mode

Gmail formats this as a full date string ("Mon, Apr 21, 2026, 9:34 AM") in most views. If parsing fails, I fall back to Date.now() — conservative, assumes the thread just arrived. Getting this right across inbox view, All Mail, and search results required handling six different string formats.

Badge Injection Without Breaking Gmail

Two failure modes to guard against when injecting elements into a live SPA you don't own:

Duplicate badges: Gmail sometimes re-renders list items without fully removing them from the DOM. I tag each badge with data-inboxsla-badge and check before injecting:

const BADGE_ATTR = 'data-inboxsla-badge';
let badge = row.querySelector(`[${BADGE_ATTR}]`) as HTMLElement | null;
if (!badge) {
  badge = document.createElement('span');
  badge.setAttribute(BADGE_ATTR, '1');
  row.appendChild(badge);
}
// Update in-place regardless
badge.style.background = bg;
badge.textContent = text;

Enter fullscreen mode Exit fullscreen mode

Stale state: When you open a thread and return to the list, elapsed time has changed. I re-compute badge state on each observer cycle and update style.background and textContent in-place rather than removing and re-injecting — keeps Gmail's own event listeners intact.

MV3: Content Script ↔ Background Service Worker

Client configuration (which domains, which SLA hours) lives in chrome.storage.local. The content script requests it from the background service worker on load and caches locally:

// Content script
const clients = await chrome.runtime.sendMessage({ type: 'GET_CLIENTS' });

// Background SW
chrome.runtime.onMessage.addListener((msg, _sender, respond) => {
  if (msg.type === 'GET_CLIENTS') {
    chrome.storage.local.get('clients').then(({ clients }) => {
      respond(clients ?? []);
    });
    return true; // signal async response
  }
});

Enter fullscreen mode Exit fullscreen mode

The content script re-fetches only after a 5-minute cooldown, not on every mutation. Avoids hammering the background SW with round-trips during heavy DOM activity.

What I'd Do Differently

Gmail's DOM is the main operational risk. Any update Google ships can break selectors. I've already patched once. Long-term, the Gmail Add-ons API would be more stable for thread detection — but it requires OAuth scope approval and a server-side component, which felt like overkill for an MVP.

For now: integration tests against a saved snapshot of Gmail's HTML catch selector regressions before each release.


Chrome Web Store: https://chromewebstore.google.com/detail/inboxsla/fooenikjagbabhodgpohljldfbpggagi

If you manage client email and have ever let a thread sit longer than you meant to, this is for you.