소스 정보
- 저장소
- saattrupdan/dotfiles
- 최근 소스 활동
- 2026년 6월 6일 16:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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 |