Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(indiegala): skip keys when revealing #31

Merged
merged 2 commits into from
Dec 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

Steam Bundle Sites Extension is a tool kit for Steam bundle websites.🔧

Supported webseites include [HumbleBundle](https://www.humblebundle.com), [BundleStars](https://www.bundlestars.com), [Indiegala](https://www.indiegala.com/), [Groupees](https://groupees.com/), [DailyIndieGames](http://www.dailyindiegame.com/) etc.
Supported webseites include [HumbleBundle](https://www.humblebundle.com), [Fanatical (formerly "BundleStars")](https://www.fanatical.com/), [Indiegala](https://www.indiegala.com/), [Groupees](https://groupees.com/), [DailyIndieGames](http://www.dailyindiegame.com/) etc.

---

Expand Down
2 changes: 1 addition & 1 deletion README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

Steam Bundle Sites Extension 是一个 Steam 包包站的工具箱。🔧

目前支持的包站有:[HumbleBundle](https://www.humblebundle.com), [BundleStars](https://www.bundlestars.com), [Indiegala](https://www.indiegala.com/), [Groupees](https://groupees.com/), [DailyIndieGames](http://www.dailyindiegame.com/) 和 [阿奇索](alds.agiso.com)。
目前支持的包站有:[HumbleBundle](https://www.humblebundle.com), [Fanatical (原 "BundleStars")](https://www.fanatical.com/), [Indiegala](https://www.indiegala.com/), [Groupees](https://groupees.com/), [DailyIndieGames](http://www.dailyindiegame.com/) 和 [阿奇索](alds.agiso.com)。

---

Expand Down
1 change: 1 addition & 0 deletions SBSE.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -3055,6 +3055,7 @@ const siteHandlers = {

if (selected === 'All' || selected === 'Owned' && d.owned || selected === 'NotOwned' && !d.owned) {
game.click();
unsafeWindow.getSerialKeyGo = true; // fix: issue#27
setTimeout(handler.bind(null, $games, callback), 700);
} else setTimeout(handler.bind(null, $games, callback), 1);
} else callback();
Expand Down