OWA Unread Title Count Updater

Update the HTML title with the number of unread messages

当前为 2016-04-27 提交的版本,查看 最新版本

// ==UserScript==
// @name         OWA Unread Title Count Updater
// @version      0.1
// @description  Update the HTML title with the number of unread messages
// @author       Dan Moore
// @match        */owa/*
// @grant        none
// @namespace https://greasyfork.org/users/40703
// ==/UserScript==

(function() {
    'use strict';
    
    var $title = $('title');

    setInterval(function() {
        var unread = $('[title=Inbox]').next().next().html();
        
        if (unread.length) {
            $title.html(unread + ' - Outlook');
        } else {
            $title.html('Outlook');
        }
    }, 1000);
})();