Skip to content

Instantly share code, notes, and snippets.

@RobinBoers
Created March 13, 2025 14:22
Show Gist options
  • Save RobinBoers/a646b84bf1125b3f4951f0cf608b8329 to your computer and use it in GitHub Desktop.
Save RobinBoers/a646b84bf1125b3f4951f0cf608b8329 to your computer and use it in GitHub Desktop.
Tampermonkey script that disables wait time on wiskunde-examens.nl
// ==UserScript==
// @name Fast as fuck
// @namespace http://tampermonkey.net/
// @version 2025-03-13
// @description Disables wait time on wiskunde-examens.nl
// @author Robijntje
// @match https://www.wiskunde-examens.nl/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=wiskunde-examens.nl
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.addEventListener('click', function (event) {
if (event.target.closest('a')) {
event.stopImmediatePropagation(); // Prevents other event listeners from running
console.log('Click event skipped for:', event.target);
}
}, true);
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment