Jumps males automatically in ChatRandom

Jumps males automatically

// ==UserScript==
// @name              Jumps males automatically in ChatRandom
// @version           0.0.1
// @description       Jumps males automatically
// @author            Ezerhorden
// @match             *://chatrandom.*
// @require           https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @run-at            document-end
// @namespace         WHatTheHell
// ==/UserScript==

$(document).ready(function() {
  setInterval(function() {
    if($("#gender.gndr_male").is(":visible")){
      $("#right_button").trigger("click");
    }
  }, 500);
});