Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungKI half beim Finden: iOS 27 schließt mehr als 100 Sicherheitslücken(21.09.2026 um 06:00 Uhr)
Sichere ProgrammierungWhat Is Rowhammer? How Can Repeated Memory Access Flip Bits in RAM?(21.09.2026 um 07:12 Uhr)
Sichere Programmierungnpm publish Ignores .gitignore: The .npmignore Override Rule(21.09.2026 um 07:15 Uhr)
Sichere ProgrammierungAphelion Editor - A free node-based video / VFX editor(21.09.2026 um 07:21 Uhr)
Sichere ProgrammierungGovernance Attack Surface Review: OKX(21.09.2026 um 07:31 Uhr)
Sichere ProgrammierungJSM Portal Request Create Property Panel Submit(21.09.2026 um 07:34 Uhr)
Reverse Engineeringsearch instructions assembly easy (X86,RISCV,AARCH64,etc)(20.09.2026 um 15:44 Uhr)
Sichere ProgrammierungKI half beim Finden: iOS 27 schließt mehr als 100 Sicherheitslücken(21.09.2026 um 06:00 Uhr)
Sichere ProgrammierungWhat Is Rowhammer? How Can Repeated Memory Access Flip Bits in RAM?(21.09.2026 um 07:12 Uhr)
Sichere Programmierungnpm publish Ignores .gitignore: The .npmignore Override Rule(21.09.2026 um 07:15 Uhr)
Sichere ProgrammierungAphelion Editor - A free node-based video / VFX editor(21.09.2026 um 07:21 Uhr)
Sichere ProgrammierungGovernance Attack Surface Review: OKX(21.09.2026 um 07:31 Uhr)
Sichere ProgrammierungJSM Portal Request Create Property Panel Submit(21.09.2026 um 07:34 Uhr)
Reverse Engineeringsearch instructions assembly easy (X86,RISCV,AARCH64,etc)(20.09.2026 um 15:44 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

From Zero to AMO: How to Publish a Firefox Extension Without Losing Your Mind

Reagiere als Erste:r — dein Feedback zählt!

Publishing to Mozilla's Add-ons site (AMO) is different from any other app store. Here's exactly what I learned going through the process with Weather & Clock Dashboard.

The Manifest Version Situation

Firefox currently supports both Manifest V2 and V3. Chrome is forcing V3 (which has significant limitations for ad blockers). Firefox's stance is more pragmatic — they support both and have promised to maintain V2 support longer.

For a new extension in 2024, use MV3. Here's the basic manifest.json:

{
  "manifest_version": 3,
  "name": "Your Extension",
  "version": "1.0",
  "permissions": ["storage"],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}

The browser_specific_settings.gecko.id is required for AMO and optional for Chrome. Include it.

The New Tab Override API

To replace the new tab page, use chrome_url_overrides:

"chrome_url_overrides": {
  "newtab": "newtab.html"
}

Despite the chrome_ prefix, this works in Firefox. Your newtab.html must be a file bundled within your extension — you can't point to an external URL.

Building and Packing

AMO requires a ZIP file (or use web-ext). I used web-ext:

npm install -g web-ext
web-ext build
# Creates web-ext-artifacts/extension-name-1.0.0.zip

Or just zip manually:

zip -r extension.zip . --exclude '*.git*' --exclude 'node_modules/*'

The AMO Submission Process

  1. Create an account at addons.mozilla.org
  2. Click "Submit a New Add-on"
  3. Choose: list on AMO (public) vs self-distribution
  4. Upload your ZIP
  5. Fill in details: name, summary (up to 250 chars), description, screenshots

Pro tip on the summary field: This is what shows in search results. Make it specific and useful. "A new tab extension" is bad. "Replace Firefox new tab with live weather, world clocks, and search" is better.

What AMO Reviewers Check

AMO does manual review for listed extensions. Based on my experience:

Automated checks:

  • Dangerous permissions (any <all_urls> permission gets scrutiny)
  • Known malware patterns
  • Minified/obfuscated code (requires source code upload)

Human review checks:

  • Does the extension do what it claims?
  • Is the permission usage justified?
  • Is there a clear privacy policy URL if you collect any data?
  • Remote code execution risks

The source code requirement:
If your code is minified (webpack, etc.), AMO requires you to upload the unminified source separately. Since I used pure HTML/CSS/JS with no build step, I didn't need to do this.

Review Timeline

My experience: initial review in ~48 hours. Subsequent updates are faster once the extension has a track record.

The reviewer will email you with:

  • Approval
  • Request for clarification
  • Specific issues to fix

Common Rejection Reasons

  1. Missing or inadequate privacy policy: If you make ANY external requests, you need to disclose this. Even just calling a weather API.

  2. Over-broad permissions: Requesting permissions you don't use.

  3. Content Security Policy issues: AMO is strict about CSP. Remote scripts aren't allowed (this is actually good practice).

  4. Unexpected remote code execution: Loading scripts from CDNs in production code.

After Publishing

Once live, your extension gets:

  • An AMO listing URL: https://addons.mozilla.org/en-US/firefox/addon/your-extension-name/
  • Install statistics (updated daily)
  • Review capability
  • A verified badge from Mozilla

The AMO install rate depends heavily on search discoverability and reviews. Getting your first 50 installs is hard — after that, organic discovery picks up.

Check Out the Result

I went through this entire process with Weather & Clock Dashboard. The source code is on GitHub if you want to see a concrete example of everything described here.

Questions about the AMO process? Drop them in the comments — happy to help.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten From Zero to AMO: How to Publish a Firefox Extension Without Losing Your Mind

Thematisch verwandte Begriffe: From, Zero, Publish, Firefox · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94111 | Tencent BrowserSkill through 0.3.0 contains an authentication bypass vul…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick