feat: add reload button to percury unblocker

This commit is contained in:
Percs 2024-10-13 19:22:31 -05:00
parent 2512c86496
commit e04a719140
2 changed files with 15 additions and 9 deletions

View file

@ -30,4 +30,8 @@ export class ScramjetFrame extends EventTarget {
forward() {
this.frame.contentWindow?.history.forward();
}
reload() {
this.frame.contentWindow?.location.reload();
}
}