Aftonbladet fixa till

By Bengt A Last update Sep 9, 2005 — Installed 3,044 times.
// Fixa till Aftonbladet user script
// Version 1.0
// 2005-08-13
// Copyright (c) Bengt Alverborg
//
// This is a Greasemonkey script which fixes some annoying things with the Aftonbladet site
//
// ==UserScript==
// @name	Aftonbladet fixa till
// @description	Removes job ads and ad for blocket. These were not possible to filter with AdBlock
// @include	http://www.aftonbladet.se/*
// ==/UserScript==
//
var adSidebar = document.getElementById('annonshspalt');
if (adSidebar) {
    adSidebar.parentNode.removeChild(adSidebar);
}
//
var adBlocket = document.getElementById('blocketnav');
if (adBlocket) {
    adBlocket.parentNode.removeChild(adBlocket);
}