Taieri College ID Photo hider

For those people with unsatisfactory ID photos.

// ==UserScript==
// @name        Taieri College ID Photo hider
// @namespace   Violentmonkey Scripts
// @match       https://taieri.school.kiwi/*
// @grant       none
// @version     1.0
// @author      EnvIr0n
// @description For those people with unsatisfactory ID photos.
// @license Unlicense
// ==/UserScript==

window.addEventListener('load', function () {
    document.querySelectorAll('img.avatar').forEach(el => el.remove());
});
//EOF