From 562274b3d86d59ac3b63995a92347e99de9f4fed Mon Sep 17 00:00:00 2001 From: KoloMl Date: Wed, 12 Mar 2025 19:27:24 +0400 Subject: [PATCH 1/2] Fixed Firefox not applying tag groups due to invalid scripts order --- manifest.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/manifest.json b/manifest.json index 530dd4b..fd7a687 100644 --- a/manifest.json +++ b/manifest.json @@ -44,6 +44,14 @@ "src/styles/content/header.scss" ] }, + { + "matches": [ + "*://*.furbooru.org/images/*" + ], + "js": [ + "src/content/tags-editor.ts" + ] + }, { "matches": [ "*://*.furbooru.org/images?*", @@ -61,14 +69,6 @@ "js": [ "src/content/tags.ts" ] - }, - { - "matches": [ - "*://*.furbooru.org/images/*" - ], - "js": [ - "src/content/tags-editor.ts" - ] } ], "action": { From cb6b5f4f9d73702fc4ccb4ccfbdb9ce04ed71d08 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Wed, 12 Mar 2025 19:32:27 +0400 Subject: [PATCH 2/2] Bumped version to 0.4.3.1 --- manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index fd7a687..99a7038 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.4.3", + "version": "0.4.3.1", "browser_specific_settings": { "gecko": { "id": "furbooru-tagging-assistant@thecore.city" diff --git a/package-lock.json b/package-lock.json index df9713e..cc1fcea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "furbooru-tagging-assistant", - "version": "0.4.3", + "version": "0.4.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "furbooru-tagging-assistant", - "version": "0.4.3", + "version": "0.4.3.1", "dependencies": { "@fortawesome/fontawesome-free": "^6.7.2", "lz-string": "^1.5.0" diff --git a/package.json b/package.json index b7952e6..a09d828 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "furbooru-tagging-assistant", - "version": "0.4.3", + "version": "0.4.3.1", "private": true, "scripts": { "build": "npm run build:popup && npm run build:extension",