Acrom7 / FEFU Б8304

// ==UserScript==
// @name         FEFU Б8304
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Автовключение расписания Б8304
// @author       Acrom7
// @license MIT
// @match        https://idm.dvfu.ru/component/calendar/calendar
// @grant        none
// ==/UserScript==

(function () {
  let a = document.getElementById('filtergroups');
  let group = 'Б8304';

  for (let i = 0; i < a.options.length; ++i) {
    if (a.options[i].text == group) {
      a.selectedIndex = i;
      break;
    }
  }

  a.onchange();
})();