TuringLab Auto Click

Automatiza el clic en el botón "Run" en TuringLab

// ==UserScript==
// @name         TuringLab Auto Click
// @namespace    https://turinglab-auto.scripts/usuario123
// @version      1.0
// @description  Automatiza el clic en el botón "Run" en TuringLab
// @author       TuNombre
// @match        https://*.turinglab.co/*
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener('load', () => {
        const runButton = document.querySelector("button[data-action='run']");
        if (runButton) {
            runButton.click();
        }
    });
})();