Outlook MailChecker 2

Checks for new mails arriving in owa and provides a desktop notification. Works in most scenarios.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name        Outlook MailChecker 2
// @namespace   Outlook
// @description Checks for new mails arriving in owa and provides a desktop notification. Works in most scenarios.
// @include     https://outlook.office.com/owa*
// @author      Cladius Fernando
// @version     1
// @grant       none
// ==/UserScript==

/*
 * Loads the actual mail-checker script from https://greasyfork.org/en/scripts/12445-outlook-mailchecker/code. 
 * For some reason the actual script when installed by itself was not working. Hence, this simple workaround.
 */
var e = document.createElement("script");
e.src = 'https://greasyfork.org/scripts/12445-outlook-mailchecker/code/Outlook%20MailChecker.user.js';
e.type="text/javascript";
document.getElementsByTagName("head")[0].appendChild(e);