Skip to content

Commit

Permalink
BG API, recaptcha visibility check, firefox bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
j-w-yun committed Nov 22, 2022
1 parent bf304de commit bfa8a97
Show file tree
Hide file tree
Showing 18 changed files with 520 additions and 390 deletions.
6 changes: 3 additions & 3 deletions awscaptcha.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
}
checking = true;

const settings = await BG.exec('get_settings');
const settings = await BG.exec('Settings.get');
if (!settings.enabled || !settings.awscaptcha_auto_solve) {
return;
}
Expand Down Expand Up @@ -98,7 +98,7 @@
return;
}

const settings = await BG.exec('get_settings');
const settings = await BG.exec('Settings.get');
if (!settings.enabled || !settings.awscaptcha_auto_solve) {
return;
}
Expand Down Expand Up @@ -142,7 +142,7 @@
while (true) {
await Time.sleep(1000);

const settings = await BG.exec('get_settings');
const settings = await BG.exec('Settings.get');
if (!settings || !settings.enabled) {
continue;
}
Expand Down
Loading

0 comments on commit bfa8a97

Please sign in to comment.