on / Outlook Office365 Login

// ==UserScript==
// @name         Outlook Office365 Login
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  After logout from outlook.office365.com, go to the login page again. It is annoying to go to https://outlook.office365.com/owa/ only to find out that Microsoft redirects you to the 'You signed out of your account' page and hagin to go to the login page manually. This scripts solves this issue.
// @author       Martin Palecek
// @match        https://login.microsoftonline.com/common/oauth2/logout
// @match        https://ccs.login.microsoftonline.com/ccs/common/oauth2/logout
// @grant        none
// @copyright    2018, on (https://openuserjs.org//users/on)
// @license      GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
// ==/UserScript==

(function() {
    'use strict';

    window.location = 'https://outlook.office365.com/owa/';
})();