Skip to content

Instantly share code, notes, and snippets.

@dan-turner
Last active October 7, 2015 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dan-turner/3223401 to your computer and use it in GitHub Desktop.
Save dan-turner/3223401 to your computer and use it in GitHub Desktop.
Outlook.com: NineMSN bar remover - Greasemonkey Script
// ==UserScript==
// @name Outlook.com Ninemsn bar remover
// @namespace #DanTurner
// @description For users of Outlook.com.
// @include https://*.mail.live.com/*
// @version 1.0.6
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @homepage https://gist.github.com/dan-turner/3223401
// @updateURL https://gist.github.com/dan-turner/3223401/raw/Outlook-NineMSN-Remover.user.js
// ==/UserScript==
$('#c_header div.c_htr').remove();
$("#BelowHeader").css("top", "");
@wadeal
Copy link

wadeal commented Aug 1, 2012

Ok so instructions or something would hurt because?

I download this, it's a compressed file. I extract it and none of the files can be opened by GreaseMonkey. Nothing in GreaseMonkey's dialogue for entering a custom script matches with above.

@dan-turner
Copy link
Author

G'day wadeal,

Here are the instructions!

Already have Greasemonkey/Tampermonkey?

Script URL

Detailed Instructions

Firefox

  • Install Greasemonkey
  • Navigate to the Script URL to bring up the Greasemonkey Installation dialog
  • Choose "Install"

Chrome

  • Install Tampermonkey
  • Navigate to the Script URL to open the script in Tampermonkey
  • Choose 'OK' to install the script
  • Choose 'OK' to allow the script for the required domain

@wadeal
Copy link

wadeal commented Aug 2, 2012 via email

@joojeene
Copy link

Tampermonkey complains that @grant header is not set, please add:

// @grant          none

to the headers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment