Skip to content

Instantly share code, notes, and snippets.

@bollwyvl
Created June 16, 2010 14:16
Show Gist options
  • Save bollwyvl/440761 to your computer and use it in GitHub Desktop.
Save bollwyvl/440761 to your computer and use it in GitHub Desktop.
Removes branding from OWA to give you more screen real estate for email, calendar contacts and tasks
// ==UserScript==
// @name Cleanup Outlook Web App
// @namespace cowa
// @description Removes branding from OWA to give you more screen real estate for email, calendar contacts and tasks
// @include https://mail.*/OWA/
// @include https://mail.*/OWA/#
// @include https://mail.*/OWA
// @include https://mail.*/?modurl=0
// @include https://mail.*/?modurl=0
// ==/UserScript==
(function(){
var style = document.createElement("style");
style.type = "text/css";
style.innerHTML = " #divAlertBar {right:200px;} \
#divBrandLogo {display:none;} \
#divMainPage {top:0;} \
#divMdNm {display:none;} \
#divBackgroundImage {display:none} \
#spnUserTileTxt{display:none;}";
document.getElementsByTagName('head')[0].appendChild(style);
var updateTitle = function(){
document.title = document.getElementById('spnCV').textContent +" Unread: OWA";
}
setInterval(updateTitle, 10000)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment