Extract content from a web page
Extracts web page content in markdown, text, or HTML format with optional CSS selectors.
/plugin marketplace add The-Focus-AI/chrome-driver/plugin install chrome-driver@focus-marketplaceURL [--format=markdown|text|html] [--selector=CSS]commands/Extract content from a web page in various formats.
Parse the user's request and run:
${CLAUDE_PLUGIN_ROOT}/bin/extract URL [OPTIONS]
Options:
--format=FORMAT - Output: markdown (default), text, html--selector="CSS" - Extract specific element only--links - Also list all links found--images - Also list all images found--metadata - Also show page metadataExamples:
${CLAUDE_PLUGIN_ROOT}/bin/extract https://example.com
${CLAUDE_PLUGIN_ROOT}/bin/extract https://example.com --format=text
${CLAUDE_PLUGIN_ROOT}/bin/extract https://example.com --selector="article.main"
${CLAUDE_PLUGIN_ROOT}/bin/extract https://example.com --links --metadata
The extracted content is printed to stdout.