This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name KSE Schedule ICS Download | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-09-13 | |
| // @author KSE Student | |
| // @description Download week's schedule as ICS file to import to Google/Apple Calendar | |
| // @match https://schedule.kse.ua/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=kse.ua | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Це все треба скопіювати та вставити в консоль розробника на сторінці освітньої програми на сайті vstup.osvita.ua (ПЕРЕД ЦИМ НАТИСНУВШИ НА КНОПКУ "Завантажити ще...", ЩОБ ВРАХОВУВАЛИСЯ УСІ ЗАЯВИ) | |
| // Результат алгоритму буде показаний в консолі, там можна буде знайти (або не знайти) себе у готовому рейтинговому списку | |
| // ========================= | |
| // ✨ Магія ✨ | |
| // ========================= | |
| const rowsToShow = ['name', 'status', 'examAverageGrades', 'priority']; | |
| const getColumnNumberByRegex = (title, sourceText) => { |