‹ 首页

develop-userscripts

@xixu-me · 收录于 1 周前

Use when building, debugging, packaging, or publishing browser userscripts for Tampermonkey or ScriptCat, including GM APIs, metadata blocks, permission issues, @match/@grant/@connect setup, ScriptCat background or scheduled scripts, UserConfig blocks, or subscription workflows.

适合你,如果你经常为 Tampermonkey 或 ScriptCat 编写用户脚本

/ 通过 npx 安装 校验哈希
npx oh-my-skill add xixu-me/skills/develop-userscripts
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- xixu-me/skills/develop-userscripts
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify xixu-me/skills/develop-userscripts
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
72GitHub stars
待重算上下文体积
索引托管

怎么用

商店整理自技能原文 · 版本 1a68a20 · 表述以原文为准
它做什么

安装后,Claude 能帮你编写、调试和发布 Tampermonkey 或 ScriptCat 用户脚本,包括处理权限、元数据块、后台脚本和订阅包等。

什么时候触发

当你需要创建或修复浏览器用户脚本,或遇到脚本注入、权限缺失、GM API 行为异常等问题时触发。

装好后可以这样说
Claude 会生成脚本代码并指导你安装。
Claude 会检查元数据和权限设置。
Claude 会解释 UserConfig 块的使用方法。
技能原文 SKILL.md作者撰写 · MIT · 1a68a20

Userscript work usually breaks at the runtime and metadata boundary, not in the page logic. Choose the runtime first, declare the minimum permissions up front, then debug in the environment where the script actually runs.

When to Use

Use this skill for:

  • writing or fixing a Tampermonkey or ScriptCat userscript
  • debugging injection timing, missing permissions, CSP workarounds, update checks, or GM_* behavior
  • deciding between a portable foreground script and ScriptCat-only @background or @crontab
  • adding config UI with ==UserConfig==
  • packaging a ScriptCat ==UserSubscribe== bundle or preparing a CloudCat-compatible script

Do not use this skill for full browser extension development or general browser automation outside userscript managers.

Runtime Selection
digraph userscript_runtime {
    "Need page DOM or page context?" [shape=diamond];
    "Need persistent or scheduled work?" [shape=diamond];
    "Need to install many scripts as one package?" [shape=diamond];
    "Portable foreground script" [shape=box];
    "ScriptCat background or crontab script" [shape=box];
    "ScriptCat subscription package" [shape=box];

    "Need page DOM or page context?" -> "Portable foreground script" [label="yes"];
    "Need page DOM or page context?" -> "Need persistent or scheduled work?" [label="no"];
    "Need persistent or scheduled work?" -> "ScriptCat background or crontab script" [label="yes"];
    "Need persistent or scheduled work?" -> "Need to install many scripts as one package?" [label="no"];
    "Need to install many scripts as one package?" -> "ScriptCat subscription package" [label="yes"];
    "Need to install many scripts as one package?" -> "Portable foreground script" [label="no"];
}
Preflight
  • Confirm the manager and browser. On Manifest V3 browsers, ScriptCat may require Allow User Scripts or browser developer mode before scripts run.
  • Decide page script versus background script before writing code. ScriptCat background scripts cannot touch the DOM.
  • Start with metadata, not implementation: @match, @grant, @connect, @run-at, and any update URLs.
  • Prefer portable ==UserScript== patterns for ordinary page scripts. Only switch to ScriptCat-only headers when the requested behavior actually needs them.
Workflow
  1. Choose the runtime and metadata first.
  2. Declare the smallest permission surface that fits the task.
  3. Implement against the runtime you chose.
  4. Debug where the code really runs.
  5. Foreground scripts: page console plus manager logs.
  6. ScriptCat background scripts: run log first, then background.html for real-environment debugging.
  7. Publish with the right update model.
  8. Normal scripts: keep @version accurate and add @updateURL or @downloadURL only when needed.
  9. Subscription bundles: use ==UserSubscribe==, HTTPS URLs, and subscription-level @connect.
Quick Reference

| Intent | Default choice | Watch for | | ------------------------------------ | -------------------------------------------- | ------------------------------------------------------------------------- | | Page UI, DOM scraping, page patching | Portable ==UserScript== | @match, @grant, @run-at, CSP-sensitive injection | | Cross-origin API access | GM_xmlhttpRequest with explicit @connect | Missing hosts, cookie behavior differences, user authorization | | Long-running worker | ScriptCat @background | No DOM, must return Promise for async work | | Scheduled task | ScriptCat @crontab | Only first @crontab counts, prefer 5-field cron, avoid interval overlap | | User-editable settings | ==UserConfig== plus GM_getValue | Block placement and group.key naming | | Silent bundle install and updates | ==UserSubscribe== | HTTPS, user.sub.js, subscription connect overrides child scripts |

Common Mistakes
  • Missing @grant for APIs the script actually uses.
  • Missing @connect for hosts used by GM_xmlhttpRequest or GM_cookie.
  • Treating @include as a better default than @match for ordinary host targeting.
  • Using DOM APIs inside ScriptCat background or cron scripts.
  • Returning from a ScriptCat background script before async GM work is truly finished.
  • Mixing ==UserScript== and ==UserSubscribe== packaging concepts.
  • Putting ==UserConfig== in the wrong place or reading config keys without the group.key name.
  • Assuming Tampermonkey and ScriptCat storage, notification, or request behavior is identical.
References
  • [references/metadata-and-api-map.md](./references/metadata-and-api-map.md)
  • [references/scriptcat-extensions.md](./references/scriptcat-extensions.md)
按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。