Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/khaicafe/appAI --skill webpage-screenshot명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Stealth browser automation with anti-detection. Launches Chromium with fingerprint randomization, webdriver flag removal, Canvas/WebGL spoofing, and permissions API masking. Use for web scraping, login automation, and session persistence on bot-protected sites. Triggers on "stealth browser", "anti-detection", "undetectable browser", "hide automation", "stealth login", "bot protection bypass".
Control local Chrome browser via Chrome DevTools Protocol (CDP) using Puppeteer. Use when you need to automate browser tasks like navigating pages, clicking elements, filling forms, taking screenshots, executing JavaScript, or intercepting network responses. Works with Chrome instances that already have CDP enabled. Common use cases include web scraping (e.g., "Search iPhone on Taobao and get prices"), automated testing, interacting with web apps (e.g., "Ask ChatGPT a question"), or monitoring network traffic.
剪贴板历史管理工具。保存剪贴板历史,快速搜索和重复粘贴。适合频繁复制粘贴的用户。
SOC 직업 분류 기준
SKILL.md 표시 중
| name | webpage-screenshot |
| description | 打开指定网页并截图为图片文件。在用户要求对某 URL 截图、保存网页为图片、或需要网页快照时使用。 |
使用项目内 TypeScript 脚本,可保存为本地图片文件:
# 在项目根目录执行
npm run screenshot -- <URL> [输出路径]
示例:
npm run screenshot -- https://example.com
# 默认保存为 ./screenshot.png
npm run screenshot -- https://example.com ./output/page.png
前置条件:已执行 npm install 且已安装浏览器:npx playwright install chromium。
若仅需在对话中「看到」页面内容而不必保存为文件,可使用 Cursor 的 browser MCP:
browser_navigate 打开目标 URLbrowser_snapshot 获取页面结构(相当于当前状态的“快照”信息)注意:MCP 浏览器不直接生成截图文件,适合快速查看与交互。
screenshot.png)。