animexin.xyz All subs language selector

This script selects the best player for english and HD quality on https://animexin.xyz/

// ==UserScript==
// @name        animexin.xyz All subs language selector
// @namespace   animexin.xyz All subs language selector
// @description:en This script selects the best player for english and HD quality on https://animexin.xyz/
// @match       *://animexin.xyz/*/
// @require     https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// @grant       none
// @version     1.5
// @author      henrik9999
// @run-at      document-idle
// @description This script selects the best player for english and HD quality on https://animexin.xyz/
// @license MIT
// ==/UserScript==

$(document).ready(function() {
  if(document.getElementsByClassName('video-content')[0].innerHTML) {
      var allSubsPlayerTwoValue = $('div.mobius > select.mirror > option:contains("All Sub Player Old (Have Much Ads now from video player)")').val();
      var allSubsPlayerTwoAltValue = $('div.mobius > select.mirror > option:contains("All Sub Player Dood")').val();
      var allSubsPlayerValue = $('div.mobius > select.mirror > option:contains("All Sub Player Fembed")').val();
      var allSubsPlayerAltValue = $('div.mobius > select.mirror > option:contains(" New All Sub Player")').val();
      var englishSubPlayerValue = $('div.mobius > select.mirror > option:contains("English")').val();
      
      if (allSubsPlayerTwoValue != undefined) {
         $("div.mobius > select.mirror").val(allSubsPlayerTwoValue).change();
      }else if (allSubsPlayerTwoAltValue != undefined) {
         $("div.mobius > select.mirror").val(allSubsPlayerTwoAltValue).change();
      }else if (allSubsPlayerValue != undefined) {
         $("div.mobius > select.mirror").val(allSubsPlayerValue).change();
      }else if (allSubsPlayerAltValue != undefined) {
          $("div.mobius > select.mirror").val(allSubsPlayerAltValue).change();
      }else if (englishSubPlayerValue != undefined) {
          $("div.mobius > select.mirror").val(englishSubPlayerValue).change();
      }
  }
});