Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

chrome-form-filler镀铬成型填料

Agent Skill

chrome-form-filler 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

499

周安装

21

GitHub Stars

1

下载量

175
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:chrome-form-filler(镀铬成型填料)
来源仓库:https://github.com/dawiddutoit/custom-claude
仓库路径:skills/chrome-form-filler
安装命令:
npx skills add https://github.com/dawiddutoit/custom-claude --skill chrome-form-filler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dawiddutoit/custom-claude --skill chrome-form-filler

简介

安全填充网页表单,逐字段展示供用户确认后再提交。

  • 禁止自动填写密码、信用卡等敏感信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 支持字段类型识别与提交前最终审核机制。
  • 依赖浏览器自动化工具,需配合用户授权使用。
  • chrome-form-filler 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Chrome Form Filler

Quick Start

Fill a web form safely with user approval:

User: "Fill out this registration form with my information"

Claude:
1. Gets tab context and reads form fields
2. Presents fields to user for approval
3. Fills each field incrementally
4. Verifies values after filling
5. Requests submission approval
6. Submits form only after confirmation

Critical Safety Rule: NEVER fill sensitive data (passwords, credit cards, SSNs, banking info) - always instruct user to fill these themselves.

Table of Contents

  1. When to Use This Skill
  2. What This Skill Does
  3. Safety-First Workflow
  4. Field Filling Process
  5. Verification and Submission
  6. Supporting Files
  7. Expected Outcomes
  8. Requirements
  9. Red Flags to Avoid

When to Use This Skill

Explicit Triggers

  • "Fill this form"
  • "Complete the form for me"
  • "Fill out registration"
  • "Submit this application"
  • "Auto-fill the contact form"
  • "Help me fill this survey"

Implicit Triggers

  • User provides data and mentions form completion
  • User expresses frustration with long forms
  • Context shows user on form page with multiple fields

Debugging Triggers

  • "The form didn't submit correctly"
  • "Some fields are empty after filling"
  • "Verification failed"

What This Skill Does

This skill automates web form filling with safety controls and user approval at every critical step:

  1. Form Discovery - Identifies all form fields on the page
  2. Permission Planning - Presents approach to user via update_plan
  3. Field Identification - Maps fields to user data with confirmation
  4. Incremental Filling - Fills one field at a time with verification
  5. Pre-Submission Review - Shows all filled values before submit
  6. Submission Control - Submits only after explicit user approval
  7. Confirmation Verification - Validates successful submission

Safety-First Workflow

Phase 1: Discovery and Planning

1. Get Tab Context

Call: tabs_context_mcp(createIfEmpty=true)
Verify: Tab group exists and tab ID is valid

2. Read Page for Form Fields

Call: read_page(tabId, filter="interactive")
Identify: All input fields, selects, textareas, checkboxes, radio buttons
Extract: Field labels, types, current values, required status

3. Present Plan to User

Call: update_plan(
  domains=["current-domain.com"],
  approach=[
    "Identify all form fields on [page name]",
    "Fill [X] fields with provided data",
    "Verify each field after filling",
    "Request approval before submission",
    "Submit form and verify confirmation"
  ]
)

User must approve plan before proceeding.

Phase 2: Field Mapping and Approval

4. Map Fields to User Data

Present structured summary to user:

Found [X] fields on [Form Name]:

Required Fields:
- First Name (text input) → [User's data or ASK]
- Email (email input) → [User's data or ASK]
- Phone (tel input) → [User's data or ASK]

Optional Fields:
- Company (text input) → [User's data or SKIP]
- Comments (textarea) → [User's data or SKIP]

SENSITIVE FIELDS (you must fill manually):
- Password (password input) → USER MUST FILL
- Credit Card (text input) → USER MUST FILL

Proceed with filling [X] fields? (yes/no)

Critical Rules:

  • ❌ NEVER fill password fields
  • ❌ NEVER fill credit card fields
  • ❌ NEVER fill SSN/banking fields
  • ❌ NEVER fill fields marked "sensitive" by context
  • ✅ ALWAYS get explicit approval for data mapping
  • ✅ ALWAYS show which fields will be filled

Phase 3: Incremental Filling

5. Fill Each Field One at a Time

For each approved field:

Step 1: Find element
  Call: find(tabId, query="[field label or purpose]")
  Verify: Element reference returned

Step 2: Fill field
  Call: form_input(tabId, ref="ref_X", value="[user data]")

Step 3: Verify filled value
  Call: read_page(tabId, ref_id="ref_X")
  Confirm: Value matches expected input

Step 4: Handle errors
  If verification fails:
    - Report to user
    - Ask for correction approach
    - Retry with alternative method (computer tool for typing)

Example filling sequence:

✅ Filled "First Name" → "John" (verified)
✅ Filled "Last Name" → "Smith" (verified)
✅ Filled "Email" → "john@example.com" (verified)
⚠️ Failed "Phone" → retry needed
✅ Filled "Phone" → "(555) 123-4567" (verified after retry)

Phase 4: Pre-Submission Review

6. Show Complete Form State

Before submission, present ALL filled values:

Form ready for submission:

First Name: John
Last Name: Smith
Email: john@example.com
Phone: (555) 123-4567
Company: [empty - optional]
Comments: [empty - optional]

UNFILLED SENSITIVE FIELDS (you must complete):
- Password: [EMPTY - FILL MANUALLY]

Submit this form? (yes/no/edit)

User must explicitly approve submission.

Phase 5: Submission and Verification

7. Submit Form

Only after approval:

Step 1: Find submit button
  Call: find(tabId, query="submit button")

Step 2: Click submit
  Call: computer(tabId, action="left_click", ref="ref_submit")

Step 3: Wait for navigation/response
  Call: computer(tabId, action="wait", duration=2)

8. Verify Confirmation

After submission:

Step 1: Read new page
  Call: read_page(tabId)

Step 2: Look for confirmation indicators:
  - Success message
  - Thank you page
  - Confirmation number
  - Email sent notice
  - Error messages

Step 3: Report outcome to user
  Success: "Form submitted successfully. Confirmation: [details]"
  Failure: "Submission failed: [error message]. Next steps: [guidance]"

Field Filling Process

Supported Field Types

Field TypeMethodVerification
Text inputform_input()Read value back
Email inputform_input()Validate format + read back
Tel inputform_input()Read value back
Textareaform_input()Read value back
Select dropdownform_input()Read selected option
Checkboxform_input(value=true/false)Read checked state
Radio buttoncomputer(action="left_click")Read selected state
Date inputform_input()Read date value

Fallback Strategy

If form_input() fails:

  1. Try computer(action="left_click") to focus field
  2. Use computer(action="type", text="value") to type
  3. Verify value with read_page()
  4. Report persistent failures to user

Validation Patterns

Email validation:

Regex: ^[^\s@]+@[^\s@]+\.[^\s@]+$
Check: Value contains @ and domain

Phone validation:

Format: Various (555) 123-4567, 555-123-4567, +1-555-123-4567
Strategy: Fill as provided, verify field accepts it

Required field check:

Before submission:
- Verify all required fields have values
- Report missing required fields to user
- Block submission until complete

Verification and Submission

Pre-Submission Checklist

Before calling submit:

  • All required fields filled
  • All values verified correct
  • User approved field mapping
  • User approved submission
  • Sensitive fields flagged for manual entry
  • No errors on page

Error Handling

Form validation errors:

After submission attempt, if errors appear:
1. Read error messages
2. Map errors to fields
3. Report to user: "Field [X] error: [message]"
4. Ask user for corrected value
5. Re-fill and re-verify
6. Request submission approval again

Network errors:

If submission fails due to network:
1. Report error to user
2. Offer to retry
3. Verify form state preserved
4. Re-attempt with user approval

Supporting Files

references/reference.md

  • Chrome MCP tool reference
  • Form field type specifications
  • Permission workflow patterns
  • Error handling strategies

examples/examples.md

  • Complete form filling workflows
  • Error recovery examples
  • Multi-page form handling
  • Dynamic form scenarios

scripts/validate_form.py

  • Validates form data before submission
  • Checks for common input errors
  • Suggests corrections

Expected Outcomes

Successful Form Fill

✅ Form Fill Complete

Form: Contact Us (example.com/contact)
Fields filled: 6/8 (2 optional skipped)
User filled manually: 1 (password)

Filled fields:
  ✓ First Name: John
  ✓ Last Name: Smith
  ✓ Email: john@example.com
  ✓ Phone: (555) 123-4567
  ✓ Message: [75 chars]
  ✓ Subscribe: Yes

Submission: Successful
Confirmation: "Thank you! We'll respond within 24 hours."

Next steps: Check email for confirmation message

Partial Fill (Manual Intervention Needed)

⚠️ Form Partially Filled

Form: Registration (site.com/register)
Fields filled: 8/12
Blocked on: 4 fields require manual entry

Filled fields: [list]

USER MUST FILL MANUALLY:
  ⚠ Password (sensitive)
  ⚠ Confirm Password (sensitive)
  ⚠ Credit Card (sensitive)
  ⚠ CVV (sensitive)

Status: Ready for user to complete sensitive fields
Action: Complete the 4 sensitive fields, then I can submit

Requirements

Browser Setup

  • Chrome browser with Claude-in-Chrome MCP extension
  • Active tab group (created via tabs_context_mcp)
  • Form page loaded and visible

User Data

  • Required field values provided by user
  • Data format matches field expectations
  • User available for approval prompts

Permissions

  • User must approve plan (update_plan)
  • User must approve field mapping
  • User must approve submission
  • User must fill sensitive fields manually

Red Flags to Avoid

Critical Safety Violations:

  • ❌ Filling password fields automatically
  • ❌ Filling credit card numbers
  • ❌ Filling SSN or banking information
  • ❌ Submitting without user approval
  • ❌ Skipping field verification

Workflow Violations:

  • ❌ Filling all fields before verification
  • ❌ Proceeding without update_plan approval
  • ❌ Assuming field mapping without user confirmation
  • ❌ Submitting on errors

Tool Misuse:

  • ❌ Using computer tool as first choice (use form_input first)
  • ❌ Not verifying tab context exists
  • ❌ Not handling element reference failures
  • ❌ Skipping post-fill verification

User Experience Issues:

  • ❌ Not presenting clear field summary
  • ❌ Not reporting verification failures
  • ❌ Not explaining why sensitive fields blocked
  • ❌ Not providing confirmation details

Notes

Key Principles:

  1. Permission First - Always get approval before major actions
  2. Incremental Verification - Verify each field immediately after filling
  3. Sensitive Data Protection - Never automate sensitive field entry
  4. Error Transparency - Report all failures clearly
  5. User Control - User can stop/edit at any point

Common Patterns:

  • Multi-page forms: Treat each page as separate workflow
  • Dynamic forms: Re-scan after field changes trigger new fields
  • Conditional fields: Only fill visible/enabled fields
  • File uploads: Use upload_image tool (separate workflow)

Integration with Other Skills:

  • Works with chrome-workflow-recorder for documenting process
  • Complements chrome-data-extractor for reading results
  • Pairs with update_plan for complex multi-step forms

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.41%
按下载量换算60

Claude

30.45%
按下载量换算53

Cursor

20.67%
按下载量换算36

Gemini CLI

10.55%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills