Windows Live Ad Remover

By mungushume Last update Jan 18, 2011 — Installed 63,516 times.

Why can't I get the script to wok entirely?

in
Subscribe to Why can't I get the script to wok entirely? 1 post, 1 voice

alant User

Firefox 3.0.7
Script downloaded from here last week (userscripts.org/scripts/show/8228)

Sorry if this is the wrong place to post this, but I can't get the script working entirely. The following is what I tried:

-First,I put in a test line at the end of the script to make sure it running.
-got 'the wlar script is running'
-I unchecked enable adblock plus
*still have white space
-I uninstalled Ad Block Plus
-restarted firefox
-reloaded
*still not full page

settings:
greasemonkey has checkmark next to enabled

under manage userscripts:
enabled box is check marked
windowslive adremover included pages:
http://*.mail.live.com/*
https://*mail.live.com/*
http://mail.live.com/*
https://mail.live.com/*

Here is adremover in notepad:
// ==UserScript==
// @author mungushume
// @version 4.3
// @name Windows Live Ad Remover
// @namespace mungushume_@_hotmail_._com
// @description Remove ads from Windows Live Mail
// @include http://*.mail.live.com/*
// @include https://*.mail.live.com/*
// @include http://mail.live.com/*
// @include https://mail.live.com/*
// @scriptsource http://userscripts.org/scripts/show/8228
// ==/UserScript==

// New in v1.1 now removes most ads from the Today page
// New in v2.0 Removes all adds from all pages
// New in v3.0 Completely redesigned to use a style-sheet form of manipulation (less processor hungry)
// BugFix v3.1 Alterations made so the script works with the "Classic" version of windows live
// BugFix v4.0 Alterations made so the script works with some changes in the UK localisation
// BugFix v4.1 More includes added as they seem to have altered some of the url's
// BugFix v4.2 Now removes the ads on the right
// BugFix v4.3 Now removes the ads after sending a mail and also the "Quick Add" panel when writing mails

var css = "@namespace url(http://www.w3.org/1999/xhtml); .cAdBannerContainer, #FooterContainer, #RadAd_Today300, .cRadAds, .cToolsCustomerCommunication, .c120x60CustomerCommContainer, .CustComm_120x60, .dSideAds , #dapIfM0, #RadAd_Banner, #RadAd_TodayPage_Banner, #RadAd_Skyscraper, #IAPWrapper, .SideAdCol { display: none !important; } .TodayDefault, .cContentInner { margin-right: 0px !important; } #MainContent, #ManagedContentWrapper { right: 0px !important; margin-right: 2px !important ;}";
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
var node = document.createElement("style");
node.type = "text/css";
node.innerHTML = css;
heads[0].appendChild(node);
}
}
alert("The WLAR script is running");

What am I doing wrong? Thanks again!
Alan

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel