Cure Cosplay Picture Unhider

By noname4444 Last update Nov 17, 2008 — Installed 2,773 times.
// ==UserScript==
// @name           Cure Cosplay Picture Unhider
// @namespace      http://userscripts.org/users/72665
// @description    Allows you to view and choose "save as" on pictures found on Curecos.com
// @include        http://*.curecos.com/*
// ==/UserScript==


var allTextareas, thisTextarea;
allTextareas = document.getElementsByTagName('img');
for (var i = 0; i < allTextareas.length; i++) {
    thisTextarea = allTextareas[i];
    thisTextarea.style.width = "";
    thisTextarea.style.height = "";
}