From cb7d5d15ce76136305c81aaf32e333a0ffcde676 Mon Sep 17 00:00:00 2001 From: GODrums Date: Sun, 27 Aug 2023 07:05:34 +0200 Subject: [PATCH] Release v1.3.3 --- html/changelog.html | 11 +++++++++++ manifest.json | 4 ++-- manifest_firefox.json | 8 ++++---- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 84a7469..975f281 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -1,3 +1,14 @@ +
+
1.3.3
+
+

+ What's new? +

+
    +
  • FIX: Previously fast actions such as switching a tab after refreshing the page could lead to unexpected behavior in the extension's functionality. This change attempts to dislodge this bug. If you still notice bugs such as the infamous "double buff pricing" on item listings, please notify me about it.
  • +
+
+
1.3.2
diff --git a/manifest.json b/manifest.json index a818d59..bb355b7 100644 --- a/manifest.json +++ b/manifest.json @@ -1,8 +1,8 @@ { "name": "BetterFloat", "author": "Rums", - "version": "1.3.2", - "version_name": "1.3.2", + "version": "1.3.3", + "version_name": "1.3.3", "description": "Enhance your experience on CSFloat.com", "manifest_version": 3, "host_permissions": ["*://prices.csgotrader.app/*", "*://csfloat.com/*"], diff --git a/manifest_firefox.json b/manifest_firefox.json index f1ffef8..067be68 100644 --- a/manifest_firefox.json +++ b/manifest_firefox.json @@ -1,7 +1,7 @@ { "name": "BetterFloat", "author": "Rums", - "version": "1.3.2", + "version": "1.3.3", "description": "Enhance your experience on CSFloat.com", "manifest_version": 3, "host_permissions": ["*://prices.csgotrader.app/*", "*://csfloat.com/*"], @@ -10,13 +10,13 @@ }, "content_scripts": [ { - "matches": ["https://csfloat.com/*", "https://csgofloat.com/*"], + "matches": ["*://*.csfloat.com/*", "*://*.csgofloat.com/*"], "js": ["js/content_script.js"], "css": ["css/stylesheet.css"], - "run_at": "document_idle" + "run_at": "document_end" }, { - "matches": ["https://csfloat.com/*", "https://csgofloat.com/*"], + "matches": ["*://*.csfloat.com/*", "*://*.csgofloat.com/*"], "js": ["js/injectionhandler.js"], "run_at": "document_start" }