From 1927c2ec3185aa0d04d8dd67e3c7d46b9d6a5ff2 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Thu, 8 Aug 2024 07:53:53 +0400 Subject: [PATCH 1/2] Fixed missing extension ID for FireFox --- manifest.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/manifest.json b/manifest.json index ab5989a..6329d77 100644 --- a/manifest.json +++ b/manifest.json @@ -2,6 +2,11 @@ "name": "Furbooru Tagging Assistant", "description": "Experimental extension with a set of tools to make the tagging faster and easier. Made specifically for Furbooru.", "version": "0.2.0", + "browser_specific_settings": { + "gecko": { + "id": "furbooru-tagging-assistant@thecore.city" + } + }, "icons": { "16": "icon16.png", "48": "icon48.png", From a93430f3e36f32e04568e04ff149a7b45199e767 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Thu, 8 Aug 2024 07:54:20 +0400 Subject: [PATCH 2/2] Bumped version to 0.2.0.1 --- manifest.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 6329d77..0c93ab8 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "Furbooru Tagging Assistant", "description": "Experimental extension with a set of tools to make the tagging faster and easier. Made specifically for Furbooru.", - "version": "0.2.0", + "version": "0.2.0.1", "browser_specific_settings": { "gecko": { "id": "furbooru-tagging-assistant@thecore.city" diff --git a/package.json b/package.json index 27d8c6c..80072b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "furbooru-tagging-assistant", - "version": "0.2.0", + "version": "0.2.0.1", "private": true, "scripts": { "build": "npm run build:popup && npm run build:extension",