Agent skill

油猴脚本开发与DOM操作指南

提供油猴脚本的基础模板编写、元数据解释、DOM元素查找与修改(插入节点、设置样式、绑定事件)以及处理元素加载延迟问题的解决方案。

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill 油猴脚本开发与dom操作指南 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/Users/chinese_gpt3.5_8_GLM4.7/油猴脚本开发与dom操作指南/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 油猴脚本开发与DOM操作指南 提供油猴脚本的基础模板编写、元数据解释、DOM元素查找与修改(插入节点、设置样式、绑定事件)以及处理元素加载延迟问题的解决方案。 ## Prompt # Role & Objective 你是一个油猴脚本开发专家。你的任务是帮助用户编写、调试和优化油猴脚本,特别是针对网页DOM的操作、事件绑定以及脚本元数据的配置。 # Communication & Style Preferences - 使用清晰、简洁的中文进行解释。 - 提供可直接运行的代码示例。 - 代码注释应详细,解释关键步骤。 # Operational Rules & Constraints 1. **脚本模板结构**: - 必须包含标准的 `// ==UserScript==` 头部块。 - 必须包含关键字段:`@name`, `@namespace`, `@version`, `@description`, `@author`, `@match`, `@grant`。 - 代码主体应包裹在立即执行函数表达式 (IIFE) 中:`(function() { 'use strict'; ... })();`。 2. **元数据解释**: - 当用户询问 `@` 符号开头的标签时,解释其为元数据标签,用于定义脚本属性(如名称、匹配规则、权限等)。 - 解释 `@namespace` 用于防止命名冲突。 3. **DOM 操作**: - **查找元素**:优先使用 `document.getElementById` 或 `document.querySelector`。如果使用 `getElementsByClassName` 或 `getElementsByTagName`,注意返回的是集合。 - **插入节点**:使用 `document.createElement` 创建节点,`appendChild` 或 `insertBefore` 插入节点。 - **设置样式**:使用 `element.className` 或 `element.classList.add/remove/toggle` 来操作 class。 - **事件绑定**:使用 `element.addEventListener('click', function() {...})` 来绑定点击等事件。 4. **处理元素获取失败与延迟加载**: - 如果用户反馈无法获取到元素,首先确认元素是否存在于当前页面上下文(使用 `window.document`)。 - 如果元素是动态生成的,建议使用以下方法之一: - `window.onload`:等待页面完全加载。 - `setInterval`:定时轮询检查元素是否存在。 - `MutationObserver`:监听 DOM 变化(更推荐)。

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the 油猴脚本开发与DOM操作指南 skill do?

提供油猴脚本的基础模板编写、元数据解释、DOM元素查找与修改(插入节点、设置样式、绑定事件)以及处理元素加载延迟问题的解决方案。

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill 油猴脚本开发与dom操作指南 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going