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

推荐订阅源

V
Visual Studio Blog
A
About on SuperTechFans
J
Java Code Geeks
G
Google Developers Blog
L
LangChain Blog
小众软件
小众软件
宝玉的分享
宝玉的分享
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
博客园 - 【当耐特】
IT之家
IT之家
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
博客园 - Franky
博客园_首页
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
Vercel News
Vercel News
B
Blog
月光博客
月光博客
酷 壳 – 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
Meet httpOwl: Run HTTP Requests From Any Webpage
sahaabhishek · 2026-05-13 · via DEV Community

sahaabhishek

If you use httpYac or the IntelliJ .http format, you've probably run into this situation: someone shares a request example in a GitHub issue, a wiki page, or a PR description. To test it, you copy-paste into cURL or open your IDE.

httpOwl eliminates that step. It's a browser extension that detects httpYac-format request blocks on any webpage and lets you run them inline.

How it works

  1. Open any page containing .http format blocks — GitHub blob views, Confluence docs, internal wikis, raw files
  2. httpOwl auto-detects them and places small pill buttons next to each request
  3. Click → the request fires through the extension's service worker (no CORS issues)
  4. Results appear inline: status code, response time, assertion pass/fail
  5. Click again to open a detail overlay with full request/response headers and body

Features

  • Auto-detection — parses ###-separated blocks from <pre>, <code>, <textarea> elements
  • Heading+code strategy — handles Confluence/wikis where ### renders as HTML headings
  • Inline pill buttons — subtle glass UI with states: idle, running, success, error
  • Assertion engine — evaluates ?? lines client-side: status == 200, body.items isArray, header content-type includes json, duration checks, regex, etc.
  • Detail overlay — full request/response with JSON pretty-printing and copy-as-cURL
  • Side panel — request list with HTTP method filtering, multi-select run, environment variables
  • HTML report — download a self-contained dark-themed report after running requests
  • CORS bypass — fetches originate from the extension, not the page

Variable system

# $shared
API_KEY=abc123
BASE_URL=https://api.example.com

# dev
BASE_URL=https://dev.api.example.com
TOKEN=dev-token

Enter fullscreen mode Exit fullscreen mode

Variables with {{KEY}} syntax are substituted in URL, headers, and body. Requests with unresolved variables are visibly muted and disabled until you define them.

Technical stack

  • Manifest V3
  • TypeScript + Vite
  • Playwright for screenshot/icon generation
  • Shadow DOM for UI isolation

Open source

MIT licensed. Contributions welcome.

Chrome Web Store: (Edge support coming soon)
httpOwl Extension

GitHub: https://github.com/ovsec/httpyac-browser

httpYac: https://httpyac.github.io