Created
March 13, 2025 14:22
-
-
Save RobinBoers/a646b84bf1125b3f4951f0cf608b8329 to your computer and use it in GitHub Desktop.
Tampermonkey script that disables wait time on wiskunde-examens.nl
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 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