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

推荐订阅源

有赞技术团队
有赞技术团队
G
Google Developers Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
J
Java Code Geeks
P
Proofpoint News Feed
V
Visual Studio Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 叶小钗
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
H
Help Net Security
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
量子位
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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
Building a Cookie Editor Chrome Extension — Why I Built C...
SHOTA · 2026-05-08 · via DEV Community

EditThisCookie Is Gone — Now What?

In late 2024, EditThisCookie — the most popular cookie editor for Chrome with millions of users — was removed from the Chrome Web Store. The reason: it never migrated to Manifest V3.

Overnight, millions of developers and testers lost their go-to cookie management tool. I saw an opportunity and built CookieJar — a modern, MV3-native cookie editor with features EditThisCookie never had.

What CookieJar Does Differently

1. Automatic Cookie Classification

EditThisCookie showed you a flat list of cookies. CookieJar automatically classifies every cookie into 6 categories:

  • Essential — Session tokens, CSRF tokens, auth cookies
  • Functional — Language preferences, UI settings
  • Analytics — Google Analytics, Mixpanel, Hotjar trackers
  • Advertising — Facebook Pixel, Google Ads, retargeting cookies
  • Social — Social media widgets, share buttons
  • Unknown — Unclassified cookies

Classification uses a combination of:

  • Pattern matching on cookie names (e.g., _ga → Analytics)
  • Domain matching against the Disconnect.me tracking list
  • Heuristic analysis of cookie attributes (HttpOnly, SameSite, expiry)

2. Privacy Score

Every site gets a 0-100 privacy score displayed as a circular gauge in the popup header. The score factors in:

  • Number and type of tracking cookies
  • Presence of third-party cookies
  • Cookie security attributes (Secure, HttpOnly, SameSite)
  • Total cookie count relative to category average

A developer can instantly see whether a site's cookie practices are reasonable.

3. Profile Management

Save and restore cookie sets as profiles:

  • Testing multi-role authentication? Save "Admin" and "User" profiles
  • Switching between staging and production? One click
  • Debugging OAuth flows? Save pre-auth and post-auth states

4. Export Formats

CookieJar exports cookies in 5 formats:

  • JSON (for programmatic use)
  • Netscape/curl format (for cURL commands)
  • HTTP Header format (for direct API testing)
  • Puppeteer format (for automation scripts)
  • CookieJar format (for import into another CookieJar instance)

Technical Architecture

MV3 Cookie Access

In MV3, cookie access requires the cookies permission and proper host permissions:

{
  "permissions": ["cookies", "storage"],
  "host_permissions": ["<all_urls>"]
}

Enter fullscreen mode Exit fullscreen mode

The chrome.cookies API provides methods for reading, setting, and removing cookies. CookieJar wraps these in a type-safe abstraction layer.

Real-Time Updates

CookieJar uses chrome.cookies.onChanged to show real-time cookie updates without polling. When a site sets, modifies, or deletes a cookie, the popup updates instantly.

Performance

With sites sometimes having 50+ cookies, rendering performance matters. CookieJar uses:

  • Virtual scrolling for large cookie lists
  • Debounced search filtering
  • Lazy classification (classify on first view, cache results)

8-Language Localization

CookieJar ships with full localization in:
English, Japanese, Chinese (Simplified), Korean, Spanish, French, German, Portuguese

All UI text goes through a localization system — no hardcoded strings.

Privacy Commitment

CookieJar itself collects zero data. No analytics, no tracking, no server communication. All cookie data stays in your browser. The irony of a cookie management tool that tracks you would not be lost on developers.

Installation

CookieJar is free and available on the Chrome Web Store.

Pro features (profile management, bulk operations, export) are available for $4.99/month.


Built by S-Hub — Chrome extensions for developers and productivity enthusiasts.

More Developer Tools from S-Hub

  • OnPageX — SEO meta analysis for any page
  • DataPick — Extract data from any webpage
  • Procshot — Auto-capture browser steps into guides
  • DataBridge — Transfer data between web apps

See all extensions at dev-tools-hub.xyz