Skip to content

Commit

Permalink
update extension check to use an allowed script as of 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer authored Jun 4, 2024
1 parent eaca0e4 commit eba1048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
if (window.chrome) {
extShow = ".ext-needed";
try {
const res = await fetch("chrome-extension://fpeoodllldobpkbkabpblcfaogecpndd/replay/index.html");
const res = await fetch("chrome-extension://fpeoodllldobpkbkabpblcfaogecpndd/ruffle/ruffle.js");
if (res.status === 200) {
extShow = ".ext-installed";
}
Expand All @@ -21,4 +21,4 @@
});
}
})();


0 comments on commit eba1048

Please sign in to comment.