Greasy Fork is available in English.

stake mines

try to take over the world!

// ==UserScript==
// @name         stake mines
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://stake.com/casino/games/mines
// @grant        none
// ==/UserScript==
window.onload = function() {
//For single key: Short cut key for 'a'
document.onkeypress = function (a) {
    var evt = window.event || a;
    switch (evt.keyCode) {
        case 65:
            // Call your method Here
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[0].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[5].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[10].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[15].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[20].click();
         }
}

//For single key: Short cut key for 's'
document.onkeypress = function (s) {
    var evt = window.event || s;
    switch (evt.keyCode) {
        case 83:
            // Call your method Here
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[1].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[6].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[11].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[16].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[21].click();
         }
}

//For single key: Short cut key for 'd'
document.onkeypress = function (d) {
    var evt = window.event || d;
    switch (evt.keyCode) {
        case 68:
            // Call your method Here
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[2].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[7].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[12].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[17].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[22].click();
         }
}

//For single key: Short cut key for 'f'
document.onkeypress = function (f) {
    var evt = window.event || f;
    switch (evt.keyCode) {
        case 70:
            // Call your method Here
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[3].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[8].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[13].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[18].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[23].click();
         }
}

//For single key: Short cut key for 'g'
document.onkeypress = function (g) {
    var evt = window.event || g;
    switch (evt.keyCode) {
        case 71:
            // Call your method Here
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[4].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[9].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[14].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[19].click();
$(".styles__Wrap-sc-1prdpq6-0.eJeYQq").children[24].click();
         }
}
}