// ==UserScript== // @name academyFIVE::AddSelectBox // @namespace dakp/academyfive // @version 2026.04.003 // @description Füge Selectbox für Kohorten/Planungsgruppen hinzu // @author Dims Akpan // @match https://a5.fhdw-hannover.de/* // @match https://a5.fhdw.de/* // @match https://fhdw.academyfive-preview.net/* // @match https://fhdw-hannover.academyfive-preview.net/* // @grant none // @icon https://www.academyfive.com/typo3conf/ext/sitepackage/Resources/Public/build/assets/images/favicon-academyfive.ico // ==/UserScript== (function() { 'use strict'; function getDropdownSelector() { const url = window.location.href; if (url.includes('/course/planning-group/list')) { return 'select[name="cohort-ids[]"]'; } if (url.includes('/course/list')) { return 'select[name="planningGroupIds[]"]'; } return null; } function tryInsertButtons() { const selector = getDropdownSelector(); if (!selector) return false; // Bootstrap Select wraps the