// ==UserScript==
// @name           ii2 antiprotect
// @namespace      http://tefra.fi/software/greasemonkey/
// @description    Removes the protection from ii2 images
// @include        http://www.ii2.org/user.php?nick=*
// ==/UserScript==

(function() {
// run after the page has fully loaded
window.addEventListener("load", removeProtect(), false);
					
// remove the notes-frame
function removeProtect() {
	var notes = document.getElementById("imageHolder");
	if(notes) {
		notes.parentNode.removeChild(notes);
	}
}

})();

