maybe fix page switching?
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m19s
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m19s
This commit is contained in:
parent
f5b8aa82c7
commit
80331ba972
@ -1,7 +1,7 @@
|
||||
// ==UserScript==
|
||||
// @name ScoreSaber Utils
|
||||
// @namespace https://ssu.fascinated.cc
|
||||
// @version 1.0.1
|
||||
// @version 1.0.2
|
||||
// @description Useful additions to ScoreSaber!
|
||||
// @author Fascinated
|
||||
// @match https://scoresaber.com/*
|
||||
@ -112,6 +112,10 @@ async function loadPlayerData(path) {
|
||||
loadPlayerData();
|
||||
|
||||
// Watch for URL changes
|
||||
window.navigation.addEventListener("navigate", (event) => {
|
||||
loadPlayerData(event.destination.url);
|
||||
});
|
||||
document.onreadystatechange = () => {
|
||||
if (document.readyState === "complete") {
|
||||
window.navigation.addEventListener("navigate", (event) => {
|
||||
loadPlayerData(event.destination.url);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user