browser

Fetch a web page URL and return its cleaned main text content.

9|1|Updated Mar 18, 2026
One-click install
npx skills add https://github.com/flaz78/9Lives --skill browser-flaz78
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: browser
Source: https://github.com/flaz78/9Lives/tree/main/workspace/skills/browser
Command: npx skills add https://github.com/flaz78/9Lives --skill browser-flaz78

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you quickly turn messy web pages into clean, readable text you can analyze or reuse without manually copying and cleaning HTML.

Core Features & Use Cases

  • URL text extraction: Fetches an accessible web page and returns the main cleaned textual content.
  • HTML cleanup: Removes scripts and HTML tags to produce a plain-text result suitable for downstream tasks.
  • Error-aware behavior: If the URL fails to load, it reports the specific access issue (for example 403/404) to help you correct the input.
  • Use Case: Extract key passages from a news article or documentation page, then summarize it or answer questions using the extracted content.

Quick Start

Ask it to read https://example.com and return the cleaned main text of the page.

Frequently Asked Questions about browser

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I extract clean text from a web page URL for content analysis?

To extract clean text from a web page URL, the tool fetches the page and strips all HTML tags and scripts. This process returns the main readable textual content, making it suitable for downstream article reading and content analysis tasks.

What is the best way to get plain text from HTML for documentation review?

Getting plain text from HTML for documentation review involves removing raw HTML markup and scripts to isolate the main content. This approach yields cleaned text passages ready for summarization or question answering without manual copying.

Why does web scraping fail to return text content on certain URLs?

Web scraping fails to return text content when the target page is not reachable. The extraction process surfaces specific access errors like 403 or 404, helping you identify and correct the invalid input URL issue directly.

Can I use extracted web page text for blog summarization workflows?

Yes, you can use extracted web page text for blog summarization workflows. By converting a URL into cleaned plain text, you remove HTML noise and prepare the core passages for downstream summarization tasks.

Does text extraction work without returning raw HTML markup?

Yes, text extraction works by explicitly removing raw HTML markup and scripts. It fetches the accessible web page and returns only the cleaned main text content, ensuring the output is plain text rather than raw HTML.