Schoology Tasks Overdue Remover

Script that removes overdue assignments from schoolology.

// ==UserScript==
// @name         Schoology Tasks Overdue Remover
// @namespace    http://tampermonkey.net/
// @version      0.5
// @description  Script that removes overdue assignments from schoolology.
// @author       gonzaor
// @match        https://*.schoology.com/home
// @icon         https://www.google.com/s2/favicons?sz=64&domain=schoology.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const divTareasvencidas = document.getElementsByClassName("overdue-submissions");

    for (const div of divTareasvencidas) {
      div.remove();
    }


})();