Marketplace develop-userscripts
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.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/xixu-me/develop-userscripts" ~/.claude/skills/aiskillstore-marketplace-develop-userscripts && rm -rf "$T"
manifest:
skills/xixu-me/develop-userscripts/SKILL.mdsource content
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
behaviorGM_* - deciding between a portable foreground script and ScriptCat-only
or@background@crontab - adding config UI with
==UserConfig== - packaging a ScriptCat
bundle or preparing a CloudCat-compatible script==UserSubscribe==
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
or browser developer mode before scripts run.Allow User Scripts - Decide page script versus background script before writing code. ScriptCat background scripts cannot touch the DOM.
- Start with metadata, not implementation:
,@match
,@grant
,@connect
, and any update URLs.@run-at - Prefer portable
patterns for ordinary page scripts. Only switch to ScriptCat-only headers when the requested behavior actually needs them.==UserScript==
Workflow
- Choose the runtime and metadata first.
- Declare the smallest permission surface that fits the task.
- Implement against the runtime you chose.
- Debug where the code really runs.
- Foreground scripts: page console plus manager logs.
- ScriptCat background scripts: run log first, then
for real-environment debugging.background.html
- Publish with the right update model.
- Normal scripts: keep
accurate and add@version
or@updateURL
only when needed.@downloadURL - Subscription bundles: use
, HTTPS URLs, and subscription-level==UserSubscribe==
.@connect
- Normal scripts: keep
Quick Reference
| Intent | Default choice | Watch for |
|---|---|---|
| Page UI, DOM scraping, page patching | Portable | , , , CSP-sensitive injection |
| Cross-origin API access | with explicit | Missing hosts, cookie behavior differences, user authorization |
| Long-running worker | ScriptCat | No DOM, must return for async work |
| Scheduled task | ScriptCat | Only first counts, prefer 5-field cron, avoid interval overlap |
| User-editable settings | plus | Block placement and naming |
| Silent bundle install and updates | | HTTPS, , subscription overrides child scripts |
Common Mistakes
- Missing
for APIs the script actually uses.@grant - Missing
for hosts used by@connect
orGM_xmlhttpRequest
.GM_cookie - Treating
as a better default than@include
for ordinary host targeting.@match - Using DOM APIs inside ScriptCat background or cron scripts.
- Returning from a ScriptCat background script before async GM work is truly finished.
- Mixing
and==UserScript==
packaging concepts.==UserSubscribe== - Putting
in the wrong place or reading config keys without the==UserConfig==
name.group.key - Assuming Tampermonkey and ScriptCat storage, notification, or request behavior is identical.