From f3215eb725b86a0aa1234b6ac3cf2c3e11d5ef1e Mon Sep 17 00:00:00 2001 From: smiley Date: Fri, 5 Sep 2025 05:35:27 +0300 Subject: [PATCH] Fix #233: Add missing "common.js" use in "/account/licenses" `scripts/store/account_licenses.js` uses `GetOption(...)` in `scripts/common.js` but doesn't reference it in its script embed section. While `common.js` is injected generally for all pages under `https://store.steampowered.com/*`, looks like it's not there by the time `GetOption(...)` is called. This settles the race condition. --- manifest.json | 1 + 1 file changed, 1 insertion(+) diff --git a/manifest.json b/manifest.json index d85caea0..313a75bf 100644 --- a/manifest.json +++ b/manifest.json @@ -223,6 +223,7 @@ ], "js": [ + "scripts/common.js", "scripts/store/account_licenses.js" ], "css":