mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 16:45:22 +00:00
13 lines
432 B
JavaScript
13 lines
432 B
JavaScript
window.MiniShopCheats = {
|
|
"mini-shop-red-second-cheapest": [
|
|
{ tool: "chrome_click", params: { selector: "button[aria-label=\"add Ruby Notebook\"]" } },
|
|
{ tool: "chrome_click", params: { selector: "#checkout" } }
|
|
],
|
|
run: {
|
|
"mini-shop-red-second-cheapest": async () => {
|
|
document.querySelector('button[aria-label="add Ruby Notebook"]').click();
|
|
document.querySelector('#checkout').click();
|
|
}
|
|
}
|
|
};
|