Prepare!

Lee Harvey's Zombie Hit Parade

UserJS for Belastingdienst.nl

, , , , ,

Most Opera users experience display issues when accessing the following sites:


So, I've written this simple UserJS script to properly apply the correct stylesheet after the page has loaded:

Download/view the belastingdienst.js script:
if (document.domain.match(/^(www\.)?toeslagen\.nl$/) ||
    document.domain.match(/^(www\.)?douane\.nl$/) ||
    document.domain.match(/^(www\.)?belastingdienst\.nl$/)) {

    document.addEventListener("load",
        function() {
            if (SwitchStyleSheet) SwitchStyleSheet("Standaard");
    }, 0);
}

Enjoy.

Enhance Opera's mouse cursor over textRemove high CPU caused by Omniture tracking

Comments

Hallvord R. M. Steenhallvors Wednesday, February 20, 2008 4:09:03 PM

Thanks! This was useful to develop an upcoming browser.js patch for these sites :-D

Write a comment

New comments have been disabled for this post.