UserJS for Belastingdienst.nl
Thursday, March 15, 2007 4:58:44 PM
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:
Enjoy.
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.

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