Pre-AMO rename. The extension is now "Naiv-QR" everywhere it surfaces to users (toolbar tooltip, popup title, icon aria-label, README, package.json). Distribution target is AMO-listed, so the manifest no longer declares gecko.update_url — Firefox handles auto-updates from AMO directly for listed extensions, and the field is in fact rejected by Mozilla's validator outside self-distribution mode. - manifest.json: name → "Naiv-QR"; gecko.id → naiv-qr@addons.naiv.no; remove update_url. - package.json: name → "naiv-qr"; drop --self-hosted from lint script now that we're back to Mozilla-hosted validation. - popup/popup.html: <title> updated. - icons/icon.svg: aria-label updated. - README: retitled, removed Self-distribution section, updated Publishing-to-AMO section to spell out the listed-distribution flow. Build artifact is now web-ext-artifacts/naiv-qr-<ver>.zip (web-ext derives the filename from manifest.name). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
34 lines
845 B
JSON
34 lines
845 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Naiv-QR",
|
|
"version": "0.1.2",
|
|
"description": "Share the current tab's URL as a scannable QR code.",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "naiv-qr@addons.naiv.no",
|
|
"strict_min_version": "142.0",
|
|
"data_collection_permissions": {
|
|
"required": ["none"]
|
|
}
|
|
}
|
|
},
|
|
"permissions": ["activeTab", "clipboardWrite"],
|
|
"action": {
|
|
"default_title": "Share page as QR code",
|
|
"default_popup": "popup/popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon.svg",
|
|
"32": "icons/icon.svg",
|
|
"48": "icons/icon.svg",
|
|
"96": "icons/icon.svg",
|
|
"128": "icons/icon.svg"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon.svg",
|
|
"32": "icons/icon.svg",
|
|
"48": "icons/icon.svg",
|
|
"96": "icons/icon.svg",
|
|
"128": "icons/icon.svg"
|
|
}
|
|
}
|