feat(chrome): hand snapshots to context mode

This commit is contained in:
云服务部-叶林立
2026-08-28 14:45:37 +08:00
parent 221e978622
commit f3a2abe1e4
96 changed files with 12800 additions and 26 deletions
@@ -0,0 +1,12 @@
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();
}
}
};