用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/saattrupdan/dotfiles --skill firefox-addon命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
What — the noskillish/slides framework for building single-file HTML decks (no build step, 27+ ready components including pure-CSS bar charts and SVG diagrams, embed mode, stepped PDF export). Use when the user asks to create, draft, extend, or restyle a slideshow, presentation, or deck — e.g. "create a slideshow about X", "make a deck on Y", "turn these notes into slides", "export the deck to PDF".
Create a LinkedIn carousel from a blog post or written content, and export it as a downloadable PDF. Use this skill whenever the user wants to turn an article, blog post, or piece of writing into a LinkedIn carousel, slide deck for social media, or multi-slide visual post. Trigger when the user says things like "turn this into a carousel", "make slides from this", "LinkedIn carousel", "social media slides", or pastes content and asks for a visual post. Also trigger when the user wants to repurpose written content for LinkedIn, or asks to export or download a carousel as a PDF.
Procedural skill for the Jottacloud CLI (`jotta-cli`). Use when managing Jotta Cloud backups, Archive uploads, Sync folders, downloads, remote file browsing, shares, trash, webhooks, logs/status triage, `jottad` pause/resume, ignore rules, or multi-instance host config. Triggers include any request to back up files to Jottacloud, upload to Archive, sync a local folder with Jottacloud, download from Jottacloud remotely, list or browse cloud paths, share files via public links, manage the remote trash, configure scan intervals or rate limits, set up webhooks, tail logs, diagnose backup/sync problems, or install/update `jotta-cli` itself. Also use for configuring a remote machine's `jottad` over SSH by setting `--host`/`--port`. Prefer `jotta-cli` over the web UI for scripted or repeatable operations.
基于 SOC 职业分类
正在显示 SKILL.md
| name | firefox-addon |
| description | Firefox add-on development, manifest validation, and AMO submission. |
| tagline | Firefox extension development and AMO submission |
| last-updated | 2026-06-06T00:00:00.000Z |
This skill covers Manifest V3 Firefox extension development, including required manifest fields, AMO validation, and submission.
Use this skill when:
browser_specific_settings for FirefoxAll new Firefox extensions must include data_collection_permissions in browser_specific_settings.gecko. This is validated on AMO submission.
{
"browser_specific_settings": {
"gecko": {
"id": "your-extension@local",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}
This is appropriate when the extension:
chrome.storage.local / browser.storage.local{
"data_collection_permissions": {
"required": ["locationInfo", "browsingHistory", "..."],
"optional": ["technicalAndInteraction", "..."]
}
}
Available data types:
Required or optional:
bookmarks, browsingHistory, cookies, credentialsOrAuthdownloads, extensionDataAndConfig, geolocationlocationInfo, personalCommunications, personalDataAndFiles, sensitiveInfoOptional only (technicalAndInteraction cannot be required):
technicalAndInteraction| Error | Fix |
|---|---|
"data_collection_permissions" property is missing | Add field to browser_specific_settings.gecko |
must have required property 'required' | Include "required": [...] array |
"required" must be array | Use ["none"] or list of data types, not boolean/string |
"data_collection_permissions" must be object | Use { "required": [...] }, not just [] |
When submitting to AMO, you'll need to complete several form sections:
Confirm your extension has a single, narrow purpose. Be ready to explain it in ~1000 characters.
For each permission in your manifest, provide a justification (max 1000 chars each):
Mozilla requires source code for reviewed extensions:
README.md or BUILD.md with step-by-step build instructionsbuild.mjs, package.json)Build the extension:
npm run build
Package for submission (produces store-ready zip):
npm run package
Prepare source package:
# Include: src/, build script, package.json, README, manifests
# Exclude: node_modules/, dist/, build output
zip -r extension-source.zip src/ build.mjs package.json README.md manifest.firefox.json
Validate on AMO before submitting:
data_collection_permissions field present in manifestbrowser_specific_settings.gecko.idnpm run package produces clean zip| Firefox AMO | Chrome Web Store |
|---|---|
Requires data_collection_permissions | No equivalent field |
Uses browser_specific_settings.gecko | Uses key for extension ID |
| Validates on upload | Validates during review |
| Requires source code submission | Source review on request |
| Auto-signs approved extensions | Requires manual review |
| No fee | $5 one-time developer fee |
| Screenshots: 2400×1800 max | Screenshots: 1280×800 or 640×400 exactly |