Open myMCPS in same tab

Instead of opening myMCPS classroom in a new tab, forcing you to close the log in, this one opens in the same page.

// ==UserScript==
// @name         Open myMCPS in same tab
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Instead of opening myMCPS classroom in a new tab, forcing you to close the log in, this one opens in the same page.
// @author       Om Jha
// @match        https://classroom.mcpsmd.org/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var links = document.getElementsByTagName('a');
    for (var i = 0; i < links.length; i++) {
        links[i].removeAttribute('target');
    }
})();