From 1ae6d733389a0d027e119825b93ea184772ea19e Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Tue, 17 Feb 2026 16:43:18 +0100 Subject: [PATCH] fix: update channel to listed in web-ext sign command and add metadata.json --- .gitea/workflows/ci.yml | 3 ++- manifest.json | 5 ++--- metadata.json | 5 +++++ 3 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 metadata.json diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 909a732..6058ab5 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -62,10 +62,11 @@ jobs: npx web-ext sign \ --api-key ${{ secrets.MOZILLA_ADDON_API_KEY }} \ --api-secret ${{ secrets.MOZILLA_ADDON_API_SECRET }} \ - --channel unlisted \ + --channel listed \ --approval-timeout 0 \ --source-dir . \ --artifacts-dir dist + --amo-metadata metadata.json - name: Push changes if: github.event_name == 'push' diff --git a/manifest.json b/manifest.json index c149b2e..d9c8578 100644 --- a/manifest.json +++ b/manifest.json @@ -1,8 +1,7 @@ { "manifest_version": 2, - "name": "vinted-favs-price", + "name": "Vinted Favorites Price", "version": "1.2.5", - "license": "MIT", "categories": { "firefox": [ "shopping" @@ -21,7 +20,7 @@ ], "browser_specific_settings": { "gecko": { - "id": "fav-price@vinted.de", + "id": "{425f78c9-e49e-4346-a7b5-b03ce33ea526}", "data_collection_permissions": { "required": [ "websiteContent" diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000..ec842f4 --- /dev/null +++ b/metadata.json @@ -0,0 +1,5 @@ +{ + "version": { "license": "MIT" }, + "categories": { "firefox": ["shopping"] }, + "requires_payment": false +} \ No newline at end of file