Omerta Auto Submit Code

Auto submit code after being manually typed

// ==UserScript==
// @name         Omerta Auto Submit Code
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Auto submit code after being manually typed
// @author       You
// @match        https://omerta.pt/*
// @match        https://omerta.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.addEventListener("input", e => {
        const target = e.target;
        if (target.id == "ver") {
            if (target.value.length == 3) {
                target.form.querySelector("#submitAction").click();
            }
        }
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址