Skip to content

Instantly share code, notes, and snippets.

@jeroenvanwijgerden
Created October 30, 2022 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeroenvanwijgerden/9068394bcfc237fd813af087616a5ace to your computer and use it in GitHub Desktop.
Save jeroenvanwijgerden/9068394bcfc237fd813af087616a5ace to your computer and use it in GitHub Desktop.
In een Somtoday lesregistratie, zet alle lln afwezig.
// ==UserScript==
// @name Somtoday Allen Afwezig
// @namespace http://tampermonkey.net/
// @version 1.0
// @description In een Somtoday lesregistratie, zet alle lln afwezig.
// @author Jeroen van Wijgerden
// @match https://docent.somtoday.nl/rooster/les/*/registratie
// @grant none
// ==/UserScript==
(function() {
'use strict';
[...document.getElementsByClassName("afwezig")].forEach(e=>e.click())
})();
@Force9871
Copy link

Thx voor de info, ben zelf een leerling lmao💀💀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment