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

推荐订阅源

博客园_首页
IT之家
IT之家
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Help Net Security
V
V2EX
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 【当耐特】
月光博客
月光博客
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件

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
rabbitholes sends your highlights straight to Anthropic —...
J Now · 2026-04-26 · via DEV Community

J Now

Most browser extensions that call an AI API route traffic through the developer's server. That means every sentence you highlight, every concept you look up, every follow-up question you type passes through infrastructure you don't control, gets logged or not logged at someone else's discretion, and lives in a database somewhere until it doesn't.

rabbitholes doesn't work that way. When you highlight a word and the tooltip fires, the request goes from your browser directly to api.anthropic.com. No intermediary. No proxy. No analytics ping on the side. The extension is Manifest V3, your Anthropic API key lives in chrome.storage.sync — encrypted, scoped to your browser profile, never transmitted to a third-party endpoint.

I built it this way because the tool's whole premise is that you should be able to look things up without friction — and "friction" includes having to decide whether you trust the developer's server with your reading habits. Direct-to-API removes that decision.

The same model applies to the search enrichment path. Click the globe icon and rabbitholes re-answers your query using Brave Search results. That request goes to api.search.brave.com directly. Source chips in the tooltip link back to the original pages. Nothing routes through me.

What the extension actually does: highlight any text on any page, and a shadow-DOM tooltip renders an explanation from Claude Haiku 4.5 next to your cursor without touching the host page's DOM. Click any word in the explanation to go deeper. Drag across a phrase to explore that instead. Every answer surfaces two suggested rabbit-hole topics — the most interesting threads from where you are. A counter tracks how many hops deep you've gone; if you tunnel far enough, you get a shareable trail.

The pencil icon opens a free-form follow-up input that inherits whatever context you've already built up in the current session.

Zero telemetry means I have no idea how many people use it or what they look up. That's the tradeoff, and it's the right one for a tool that sits on every page you read.

github.com/robertnowell/rabbitholes