By Gea-Suan Lin
—
Last update
Apr 30, 2009
—
Installed
136 times.
// ==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 = '';
}
})();