用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/claude-world/cf-browser --skill content-extractor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Monitor release notes and changelogs from any software project via its web page
Extract and compare structured data from competitor or benchmark websites
Fetch external documentation sites and convert to local markdown for context
基于 SOC 职业分类
正在显示 SKILL.md
| name | content-extractor |
| description | Extract structured content from web pages using CF Browser MCP tools |
| user_invocable | true |
Extract content from JavaScript-rendered web pages using CF Browser MCP tools.
CF Browser MCP server must be configured in .mcp.json (see quick start).
Analyze the user's intent and select the appropriate mode:
Trigger: "read this page", "get content from", "what does X say"
Tool: browser_markdown
Workflow:
browser_markdown with the URLTrigger: "extract products", "get prices", "pull data from"
Tool: browser_json
Workflow:
browser_json with URL and extraction promptTrigger: "get the headlines", "extract article titles", "find all images"
Tool: browser_scrape
Workflow:
browser_scrape with URL and selectors arrayTrigger: "find all links", "list pages on", "discover URLs"
Tool: browser_links
Workflow:
browser_links with the URLTrigger: "screenshot", "show me what X looks like", "capture page"
Tool: browser_screenshot
Workflow:
browser_screenshot with URL and optional viewport dimensions"Read the Hono documentation homepage"
→ browser_markdown("https://hono.dev")
"Extract all pricing tiers from Vercel"
→ browser_json("https://vercel.com/pricing", prompt="Extract all pricing tiers with name, price, and features")
"Get all h2 headings from this blog post"
→ browser_scrape("https://example.com/blog/post", selectors=["h2"])
"Screenshot the landing page at mobile width"
→ browser_screenshot("https://example.com", width=375, height=812)