Skip to content

Commit

Permalink
Release v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
GODrums committed Aug 27, 2023
1 parent bf6fa55 commit cb7d5d1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions html/changelog.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<div class="Group">
<div class="VersionHeader">1.3.3</div>
<div class="VersionBox">
<p class="VersionSubHeader">
What's new?
</p>
<ul class="VersionText">
<li><b>FIX:</b> 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.</li>
</ul>
</div>
</div>
<div class="Group">
<div class="VersionHeader">1.3.2</div>
<div class="VersionBox">
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -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/*"],
Expand Down
8 changes: 4 additions & 4 deletions manifest_firefox.json
Original file line number Diff line number Diff line change
@@ -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/*"],
Expand All @@ -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"
}
Expand Down

0 comments on commit cb7d5d1

Please sign in to comment.