SStvAA / New Userscript

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @license      MIT
// @match        https://render.figure-eight.io/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var elemento = document.getElementsByClassName("form-actions");
    if(elemento.length > 1){
        alert("ERROR: Numero de clases excedido.");
    }
    else if(elemento.length == 0){
        alert("ERROR: Pagina desconocida.");
    }
    else{
        for(var i = 0; i < elemento.length; i++){
            elemento[i].id= "tst1";}
        document.getElementById('tst1').innerHTML='<input type="submit" class="submit btn btn-cf-blue" value="Enviar y Continuar">';
        document.getElementById('tst1').removeAttribute("id");
        console.log("listo");
    }

    
})();