From dfebf75052af29bcdcd1f2f820aa9b442493c3c2 Mon Sep 17 00:00:00 2001 From: Ole-Morten Duesund Date: Mon, 11 May 2026 16:39:49 +0200 Subject: [PATCH] v0.1.1: change gecko.id to share-as-qr@addons.naiv.no, bump version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move the extension ID off the dev-placeholder .local TLD onto the naiv.no domain so it's stable for any future AMO submission. AMO locks the ID for the lifetime of a listing, so this needs to happen before the first listed upload — not after. No code or behaviour changes. Lint and package both still clean (0 errors / 0 warnings, ~12 KB zip). Co-Authored-By: Claude Opus 4.7 (1M context) --- manifest.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index e93b490..e4fafb4 100644 --- a/manifest.json +++ b/manifest.json @@ -1,11 +1,11 @@ { "manifest_version": 3, "name": "Share as QR", - "version": "0.1.0", + "version": "0.1.1", "description": "Share the current tab's URL as a scannable QR code.", "browser_specific_settings": { "gecko": { - "id": "share-as-qr@olemd.local", + "id": "share-as-qr@addons.naiv.no", "strict_min_version": "142.0", "data_collection_permissions": { "required": ["none"] diff --git a/package.json b/package.json index b45a3f3..8a23303 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "share-as-qr", - "version": "0.1.0", + "version": "0.1.1", "private": true, "description": "Firefox extension: share the current tab's URL as a QR code.", "license": "MIT",