diff --git a/projections.user.js b/projections.user.js index e6bf298..bd3a7a5 100644 --- a/projections.user.js +++ b/projections.user.js @@ -253,6 +253,15 @@ window.wkof.ItemData.get_items("subjects, assignments").then(items => { // Enable callback when we enter the progression page window.wkof.on("wkstats.projections.loaded", () => P.api(userData, levels, systems, items)); + if (location.pathname.includes("projections")) { + const checkExist = setInterval(() => { + const container = document.querySelector(".main-content .projections"); + if (container) { + clearInterval(checkExist); + P.api(userData, levels, systems, items); + } + }, 100); + } }); }); });