Wretch Album Style Remover

By Gea-Suan Lin Last update Apr 30, 2009 — Installed 136 times. Daily Installs: 1, 0, 0, 0, 3, 0, 0, 0, 0, 3, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0
// ==UserScript==
// @name        Wretch Album Style Remover
// @namespace   http://blog.gslin.org/plugins/wretch-album-style-remover
// @description Remove wretch album style
// @homepage    http://blog.gslin.org/plugins/wretch-album-style-remover
// @include     http://www.wretch.cc/album/*
// ==/UserScript==

(function(){
    var i, l = document.styleSheets.length;
    for (i = 0; i < l; i++) {
        document.styleSheets.item(i).disabled = true;
    }
    for (i in document.getElementsByTagName('*')) {
        i.style.cssText = '';
    }
})();