ソース情報
- リポジトリ
- saattrupdan/dotfiles
- ソースの最終更新活動
- 2026年6月6日 16:39
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/saattrupdan/dotfiles --skill firefox-addonコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
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.
| 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 |